is-html-attribute-closing

Is a character on a given index a closing of an HTML attribute?

Usage no npm install needed!

<script type="module">
  import isHtmlAttributeClosing from 'https://cdn.skypack.dev/is-html-attribute-closing';
</script>

README

is-html-attribute-closing

Is a character on a given index a closing of an HTML attribute?

Install

The latest version is ESM only: Node 12+ is needed to use it and it must be imported instead of required. If your project is not on ESM yet and you want to use require, use an older version of this program, 2.3.0.

npm i is-html-attribute-closing

Quick Take

import { strict as assert } from "assert";

import { isAttrClosing } from "is-html-attribute-closing";

const str = `<a href="zzz" target="_blank" style="color: black;">`;

// <a href="zzz" target="_blank" ...
//                      ^
//                  index 21

// <a href="zzz" target="_blank" ...
//                             ^
//                         index 28

assert.equal(
  isAttrClosing(
    str, // reference string
    21, // known opening (or in absence of a quote, a start of a value)
    28 // we ask, is this a closing on the attribute?
  ),
  true // the answer
);

Documentation

Please visit codsen.com for a full description of the API.

Contributing

To report bugs or request features or assistance, raise an issue on GitHub.

Licence

MIT License

Copyright (c) 2010-2022 Roy Revelt and other contributors

ok codsen star