1
0
mirror of https://github.com/WeBankFinTech/fes.js.git synced 2025-04-06 03:59:53 +08:00
2020-12-27 19:57:02 +08:00

10 lines
182 B
JavaScript

// TODO fes-utils 完善
export function main() {
console.log('hello world');
}
export function isHtmlElement(node) {
return node && node.nodeType === Node.ELEMENT_NODE;
}