1.0.0 • Published 7 years ago

node-is-ancestor-of v1.0.0

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

Node is ancestor of

Check if node is ancestor of descendant

Install

  • NPM
    npm install --save node-is-ancestor-of
  • Yarn
    yarn add node-is-ancestor-of

Usage

const isAncestorOf = require('node-is-ancestor-of')

const el1 = document.getElementById('el1')
const el2 = document.getElementById('el2')
console.log(isAncestorOf(el1, el2))
// return true if el1 is ancestor of el2
// return false if el1 is not ancestor of el2

License

MIT © Roman Masyhar