aboutsummaryrefslogtreecommitdiffstats
path: root/src/polyfills/children.js
blob: 98e914306a8f79be37222141f3bb70a16de2fa52 (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
  })
}