File size: 115 Bytes
bc20498
 
 
 
 
1
2
3
4
5
6
var adjacent = require('./helper/adjacent');

module.exports = function succ(str) {
  return adjacent(str, -1);
};