Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 762 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 762 Bytes

string-wrap

🥪 wrap a string from both sides

const wrap = require('string-wrap');

// Both sides
wrap('someone else said it', '"') // "someone else said it"

// Before and after
wrap('some comment', '(', ')') // (some comment)

Transpiled version

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');