You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
350 B

'use strict';
module.exports = whitespace;
var fromCode = String.fromCharCode;
var re = /\s/;
/* Check if the given character code, or the character
* code at the first character, is a whitespace character. */
function whitespace(character) {
return re.test(
typeof character === 'number' ? fromCode(character) : character.charAt(0)
);
}