UNPKG

unist-utils-core

Version:

A collection of commonly used (albeit enhanced) algorithms based on unist and unist-util-xxx

19 lines 591 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.selectAll = exports.select = void 0; const unist_util_select_1 = require("unist-util-select"); /** * Find first Node that matches selector * * @param selector CSS-like selector * @param tree Unist node or tree of nodes to search */ exports.select = unist_util_select_1.select; /** * Find all Nodes that match selector * * @param selector CSS-like selector * @param tree Unist node or tree of nodes to search */ exports.selectAll = unist_util_select_1.selectAll; //# sourceMappingURL=select.js.map