Skip to content
On this page

isXml

ts
import { isXml } from 'fileasy'

// or

import { isXml } from 'fileasy/dist/judge/text'

Example​

ts
import { isXml } from 'fileasy'

console.log(isXml(file as File))
// boolean

console.log(isXml(base64 as string))
// boolean

Hi👋