Blame view

node_modules/underscore.string/succ.js 114 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
  var adjacent = require('./helper/adjacent');
  
  module.exports = function succ(str) {
    return adjacent(str, 1);
  };