FLUJOS/BACK_BACK/node_modules/is-html/readme.md
2025-11-07 00:06:12 +01:00

554 B
Executable file

is-html Build Status

Check if a string is HTML

Install

$ npm install --save is-html

Usage

const isHtml = require('is-html');

isHtml('<p>I am HTML</p>');
//=> true

isHtml('<!doctype><html><body><h1>I ❤ unicorns</h1></body></html>');
//=> true

isHtml('<cake>I am XML</cake>');
//=> false

isHtml('>+++++++>++++++++++>+++>+<<<<-');
//=> false

License

MIT © Sindre Sorhus