update node devDependencies

This commit is contained in:
Daniel Freedman
2017-12-04 11:15:46 -08:00
parent 1fbb5041d9
commit a39f3f41ad
4 changed files with 1323 additions and 768 deletions
+2
View File
@@ -198,9 +198,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
function forwardMethods(proto, methods) {
for (let i=0; i < methods.length; i++) {
let method = methods[i];
/* eslint-disable valid-jsdoc */
proto[method] = /** @this {DomApi} */ function() {
return this.node[method].apply(this.node, arguments);
};
/* eslint-enable */
}
}