dom.ts 226 B

1234567
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. export const domFrom = (html: string, document_ = document) => {
  3. const dom = document_.createElement('div')
  4. dom.innerHTML = html
  5. return dom
  6. }