get-root-node-polyfill

get-root-node-polyfill JS library on GitHub get-root-node-polyfill JS library on npm Download get-root-node-polyfill JS library

Polyfill for the new Node method getRootNode

Version 1.0.0 License MIT
get-root-node-polyfill has no homepage
get-root-node-polyfill JS library on GitHub
get-root-node-polyfill JS library on npm
Download get-root-node-polyfill JS library
Keywords
DOMDOM4PolyfillgetRootNoderootNodeNode

Node.prototype.getRootNode polyfill

Polyfill for the new DOM method Node.prototype.getRootNode as defined by the DOM specification

Install

npm install --save get-root-node-polyfill

Usage

// Implement the method if it does not already exist:
require('get-root-node-polyfill/implement');
aDiv.getRootNode({ composed: false }); // options are optional, defaults to composed = false.

// Get the method without touching Node.prototype
const getRootNode = require('get-root-node-polyfill');
getRootNode.call(aDiv, { composed: false });

// Check if the method is available on Node.prototype.
const isImplemented = require('get-root-node-polyfill/is-implemented');
isImplemented(); // true if the method is available