UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

32 lines (19 loc) 532 B
# is-html [![Build Status](https://travis-ci.org/sindresorhus/is-html.svg?branch=master)](https://travis-ci.org/sindresorhus/is-html) > Check if a string is HTML ## Install ``` $ npm install is-html ``` ## Usage ```js 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 ``` Note: It does not detect deprecated HTML tags.