Version 1
[yaffs-website] / node_modules / underscore.string / exports.js
diff --git a/node_modules/underscore.string/exports.js b/node_modules/underscore.string/exports.js
new file mode 100644 (file)
index 0000000..501010b
--- /dev/null
@@ -0,0 +1,10 @@
+module.exports = function() {
+  var result = {};
+
+  for (var prop in this) {
+    if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map)$/)) continue;
+    result[prop] = this[prop];
+  }
+
+  return result;
+};