antv-l7/node_modules/is-whitespace-character
thinkinggis f7e5376b7d fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
..
index.js fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
license fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
package.json fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
readme.md fix(fix css): fix css png 2019-11-22 18:04:14 +08:00

readme.md

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]).

Installation

npm:

npm install is-whitespace-character

Usage

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

whitespace(' ') // => true
whitespace('\n') // => true
whitespace('\uFEFF') // => true
whitespace('_') // => false
whitespace('a') // => true
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.

License

MIT © Titus Wormer