Version 1
[yaffs-website] / node_modules / underscore.string / join.js
diff --git a/node_modules/underscore.string/join.js b/node_modules/underscore.string/join.js
new file mode 100644 (file)
index 0000000..b1a18ca
--- /dev/null
@@ -0,0 +1,9 @@
+var makeString = require('./helper/makeString');
+var slice = [].slice;
+
+module.exports = function join() {
+  var args = slice.call(arguments),
+    separator = args.shift();
+
+  return args.join(makeString(separator));
+};