is-whitespace-character
Check if a character is a whitespace character
Last updated 6 years ago by wooorm .
MIT · Repository · Bugs · Original npm
$ cnpm install is-whitespace-character 
SYNC missed versions from official npm registry.

is-whitespace-character

Build Coverage Downloads Size

Check if a character is a whitespace character: \s, which equals all Unicode Space Separators (including [ \t\v\f]), the BOM (\uFEFF), and line terminator ([\n\r\u2028\u2029]).

Install

npm:

npm install is-whitespace-character

Use

var whitespace = require('is-whitespace-character')

whitespace(' ') // => true
whitespace('\n') // => true
whitespace('\uFEFF') // => true
whitespace('_') // => false
whitespace('a') // => false
whitespace('????') // => false

API

whitespaceCharacter(character|code)

Check whether the given character code (number), or the character code at the first position (string), is a whitespace character.

Related

License

MIT © Titus Wormer

Current Tags

  • 2.0.1                                ...           latest (4 years ago)

3 Versions

  • 2.0.1                                ...           4 years ago
  • 1.0.3                                ...           6 years ago
  • 1.0.4                                ...           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