Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

is-whitespace-code-point

jridgewell19MIT1.0.1

Checks if a given code point is whitespace

whitespace, code, point

readme

is-whitespace-code-point Build Status

Checks if a given code point (ie, the return value from String.p.charCodeAt) is whitespace. Semantically equivalent to /\s/, but considerably faster.

Installation

npm install is-whitespace-code-point

Usage

var isWhitespace = require('is-whitespace-code-point')

isWhitespace(' '.charCodeAt(0)) // => true
isWhitespace(0x20) // => true
isWhitespace(32) // => true
isWhitespace('\n'.charCodeAt(0)) // => true
isWhitespace(0x0A) // => true
isWhitespace(10) // => true

isWhitespace('a'.charCodeAt(0)) // => false
isWhitespace(0x61) // => false
isWhitespace(97) // => false

License

MIT