Version 1
[yaffs-website] / node_modules / underscore.string / quote.js
diff --git a/node_modules/underscore.string/quote.js b/node_modules/underscore.string/quote.js
new file mode 100644 (file)
index 0000000..1e90f63
--- /dev/null
@@ -0,0 +1,5 @@
+var surround = require('./surround');
+
+module.exports = function quote(str, quoteChar) {
+  return surround(str, quoteChar || '"');
+};