import 'get-root-node-polyfill/implement'
if (window.NodeList && !NodeList.prototype.forEach) {
NodeList.prototype.forEach = function (callback, argument) {
argument = argument || window
for (let i = 0; i < this.length; i++) {
callback.call(argument, this[i], i, this)
}
}
}