blob: 690e23ad1d071154aac7ccfa00b9d32d34bc3e4a (
plain)
1
2
3
4
5
6
7
8
|
import { filter } from '../utils/utils.js'
// IE11: children does not work for svg nodes
export default function children(node) {
return filter(node.childNodes, function (child) {
return child.nodeType === 1
})
}
|