diff --git a/exports.js b/exports.js index 501010b5..62e0732f 100644 --- a/exports.js +++ b/exports.js @@ -2,7 +2,7 @@ module.exports = function() { var result = {}; for (var prop in this) { - if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map)$/)) continue; + if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map|wrap)$/)) continue; result[prop] = this[prop]; }