space-separated-tokens
Parse and stringify space-separated tokens
Last updated 6 years ago by wooorm .
MIT · Repository · Bugs · Original npm
$ cnpm install space-separated-tokens 
SYNC missed versions from official npm registry.

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 it’s not possible to specify empty or whitespace only values.

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

string — Space-separated tokens.

Related

License

MIT © Titus Wormer

Current Tags

  • 2.0.2                                ...           latest (3 years ago)

3 Versions

  • 2.0.2                                ...           3 years ago
  • 2.0.1                                ...           4 years ago
  • 1.1.5                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (8)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org