quotation

Quote a value

Usage no npm install needed!

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

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 12.20+, 14.14+, or 16.0+), install with npm:

npm install quotation

In Deno with Skypack:

import {quotation} from 'https://cdn.skypack.dev/quotation@2?dts'

In browsers with Skypack:

<script type="module">
  import {quotation} from 'https://cdn.skypack.dev/quotation@2?min'
</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 following 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. There are no extra exported types.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 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