Skip to content

Latest commit

 

History

History

string-wrap

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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