Buckets:
| ; | |
| exports.__esModule = true; | |
| exports.default = insertAfter; | |
| /** | |
| * Inserts a node after a given reference node. | |
| * | |
| * @param node the node to insert | |
| * @param refNode the reference node | |
| */ | |
| function insertAfter(node, refNode) { | |
| if (node && refNode && refNode.parentNode) { | |
| if (refNode.nextSibling) { | |
| refNode.parentNode.insertBefore(node, refNode.nextSibling); | |
| } else { | |
| refNode.parentNode.appendChild(node); | |
| } | |
| return node; | |
| } | |
| return null; | |
| } | |
| module.exports = exports["default"]; |
Xet Storage Details
- Size:
- 527 Bytes
- Xet hash:
- 96a4d3ba64dd2d26cebd828a5b3daabc2a7d5775a646e6a2d86f54f61f9478f9
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.