JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 67110
  • Score
    100M100P100Q151819F
  • License MIT

Quote a value

Package Exports

  • quotation
  • quotation/index.js

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

Build Coverage Downloads Size

Quote a value.

Contents

What is this?

This package makes it quite easy to quote one or more values.

When should I use this?

Use this package if you need to quote one or more strings with straight or smart quotes.

Install

This package is ESM only. In Node.js (version 14.14+, 16.0+), install with npm:

npm install quotation

In Deno with esm.sh:

import {quotation} from 'https://esm.sh/quotation@2'

In browsers with esm.sh:

<script type="module">
  import {quotation} from 'https://esm.sh/quotation@2?bundle'
</script>

Use

import {quotation} from 'quotation'

quotation('one') // => '"one"'
quotation(['one', 'two']) // => ['"one"', '"two"']
quotation('one', "'") // => "'one'"
quotation('one', '“', '”') // => '“one”'

API

This package exports the identifier quotation. There is no default export.

quotation(value[, open[, close]])

Quote a value.

Parameters
  • value (string or string[]) — value to wrap in quotes
  • open (string, default: ") — character to add at start of value
  • close (string, default: open or ") — character to add at end of value

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. It also works in Deno and modern browsers.

Security

This package is safe.

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer