blob: 62e0732fe08a8bf61cc46a6ee6152855bedca939 [file] [log] [blame]
module.exports = function() {
var result = {};
for (var prop in this) {
if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map|wrap)$/)) continue;
result[prop] = this[prop];
}
return result;
};