Package Exports
- quotation
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (quotation) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
quotation

Quote a value.
Installation
npm:
npm install quotationUsage
var quotation = require('quotation')
quotation('one') // => '"one"'
quotation(['one', 'two']) // => ['"one"', '"two"']
quotation('one', "'") // => '\'one\''
quotation('one', '“', '”') // => '“one”'API
quotation(value[, open[, close]])
Quote a value.
Parameters
value(stringorArray.<string>) — Value to wrap in quotesopen(string, default:") — Character to add at start ofvalueclose(string, default:openor") — Character to add at end ofvalue