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