surround.js 97 B

123
  1. module.exports = function surround(str, wrapper) {
  2. return [wrapper, str, wrapper].join('');
  3. };