fleet-docs/node_modules/space-separated-tokens
divya-mohan0209 9de94a264c Initial commit 2022-09-22 09:54:31 +05:30
..
index.js Initial commit 2022-09-22 09:54:31 +05:30
license Initial commit 2022-09-22 09:54:31 +05:30
package.json Initial commit 2022-09-22 09:54:31 +05:30
readme.md Initial commit 2022-09-22 09:54:31 +05:30

readme.md

space-separated-tokens

Build Coverage Downloads Size

Parse and stringify space-separated tokens according to the spec.

Install

npm:

npm install space-separated-tokens

Usage

var spaceSeparated = require('space-separated-tokens')

spaceSeparated.parse(' foo\tbar\nbaz  ')
//=> ['foo', 'bar', 'baz']

spaceSeparated.stringify(['foo', 'bar', 'baz'])
//=> 'foo bar baz'

API

spaceSeparated.parse(value)

Parse space-separated tokens to an array of strings, according to the spec.

Parameters
  • value (string) — space-separated tokens
Returns

Array.<string> — List of tokens.

spaceSeparated.stringify(values)

Serialize an array of strings to space-separated tokens. Note that its not possible to specify empty or whitespace only values.

Parameters
  • values (Array.<string>) — List of tokens
Returns

string — Space-separated tokens.

License

MIT © Titus Wormer