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