parenthesize

wrap a string in parens, brackets, or whatever else you want

Usage no npm install needed!

<script type="module">
  import parenthesize from 'https://cdn.skypack.dev/parenthesize';
</script>

README

parenthesize

Wrap a string in parens, brackets, or whatever else you want.

Synopsis

var assert = require('assert')
var parenthesize = require('./')

parenthesize is a function that will wrap a given value in parenthesis:

assert.equal('(A comment)', parenthesize("A comment"))

You can replace the parens by providing an alternative delimiter:

assert.equal('[1]', parenthesize(1, '[]'))

If you want multi-character or other unusual delimiters, use an array for the second argument:

assert.equal('do\nputs "wat"\nend', parenthesize('puts "wat"', ['do\n', '\nend']))

API

module.exports = (String, (String|Array<String>)? ) => String

LIcense

MIT