UNPKG

fontoxpath

Version:

A minimalistic XPath 3.1 engine in JavaScript

12 lines (8 loc) 262 B
export default function getBucketsForNode (node) { var buckets = []; buckets.push('type-' + node.nodeType); if (node.nodeType === node.ELEMENT_NODE || node.nodeType === node.ATTRIBUTE_NODE) { buckets.push('name-' + node.localName); } return buckets; }