mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-02 19:58:18 +08:00
10 lines
182 B
JavaScript
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;
|
|
}
|