Comparing version 1.8.1 to 1.8.2
@@ -33,2 +33,9 @@ /** | ||
}; | ||
Node.prototype.process = function(processor, ...args) { | ||
if ( typeof processor === "function" ) { | ||
processor.call(this, ...args); | ||
} | ||
return this; | ||
} | ||
} |
{ | ||
"name": "extes", | ||
"version": "1.8.1", | ||
"version": "1.8.2", | ||
"description": "A tiny library that extends native js with some handy tools", | ||
@@ -5,0 +5,0 @@ "main": "index.mjs", |
25156
842