Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
345 B
Plaintext
16 lines
345 B
Plaintext
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = childNodes;
|
|
var toArray = Function.prototype.bind.call(Function.prototype.call, [].slice);
|
|
/**
|
|
* Collects all child nodes of an element.
|
|
*
|
|
* @param node the node
|
|
*/
|
|
|
|
function childNodes(node) {
|
|
return node ? toArray(node.childNodes) : [];
|
|
}
|
|
|
|
module.exports = exports["default"]; |