surround.js 97 Bytes Raw Blame History Permalink 1 2 3 module.exports = function surround(str, wrapper) { return [wrapper, str, wrapper].join(''); };