Skip to content

Commit

Permalink
Add "wrap" to exports.
Browse files Browse the repository at this point in the history
Fixes a bug introduced in #410.
  • Loading branch information
Christina Roberts committed Feb 20, 2016
1 parent d2453f4 commit c1a3b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exports.js
Expand Up @@ -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];
}

Expand Down

0 comments on commit c1a3b89

Please sign in to comment.