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