Skip to content

Commit c1a3b89

Browse files
author
Christina Roberts
committed
Add "wrap" to exports.
Fixes a bug introduced in #410.
1 parent d2453f4 commit c1a3b89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exports.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = function() {
22
var result = {};
33

44
for (var prop in this) {
5-
if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map)$/)) continue;
5+
if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map|wrap)$/)) continue;
66
result[prop] = this[prop];
77
}
88

0 commit comments

Comments
 (0)