const wrap = require('string-wrap');
// Both sides
wrap('someone else said it', '"') // "someone else said it"
// Before and after
wrap('some comment', '(', ')') // (some comment)
Environments which exclude node_modules from the transpiling pipeline should include the "browser" entry instead of "main". This exposes an ES5 commonjs module.
Also available for explicit import:
const wrap = require('string-wrap/dist');