succ.js 114 Bytes Raw Blame History Permalink 1 2 3 4 5 var adjacent = require('./helper/adjacent'); module.exports = function succ(str) { return adjacent(str, 1); };