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