exports.js 241 B

12345678910
  1. module.exports = function() {
  2. var result = {};
  3. for (var prop in this) {
  4. if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map|wrap)$/)) continue;
  5. result[prop] = this[prop];
  6. }
  7. return result;
  8. };