Version 1
[yaffs-website] / node_modules / underscore.string / surround.js
diff --git a/node_modules/underscore.string/surround.js b/node_modules/underscore.string/surround.js
new file mode 100644 (file)
index 0000000..9cb7f7e
--- /dev/null
@@ -0,0 +1,3 @@
+module.exports = function surround(str, wrapper) {
+  return [wrapper, str, wrapper].join('');
+};