1.0.0 • Published 7 years ago

extract-html-id v1.0.0

Weekly downloads
29
License
MIT
Repository
github
Last release
7 years ago

extract-html-id stability

npm version build status downloads js-standard-style

Extract all ids from html

Usage

var extract = require('extract-html-id')
var assert = require('assert')

var html = `
  <div id="foo">
    <p id="bar">hello planet</p>
  </div>
`
var expected = [ 'foo', 'bar']
assert.deepEqual(extract(html), expected, 'array was same')

API

ids = extract(html)

Get an array of ids for the given string. Uses a regex so safe to run on non-html strings too. Returns the first ID per DOM element. Returns an empty array if no matches are found.

License

MIT