mirror of
https://github.com/thangisme/notes.git
synced 2025-11-23 13:12:25 -05:00
Initial commit
This commit is contained in:
9
node_modules/stylelint/lib/utils/isWhitespace.js
generated
vendored
Normal file
9
node_modules/stylelint/lib/utils/isWhitespace.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* @flow */
|
||||
"use strict"
|
||||
|
||||
/**
|
||||
* Check if a character is whitespace.
|
||||
*/
|
||||
module.exports = function (char/*: string*/)/*: boolean*/ {
|
||||
return [ " ", "\n", "\t", "\r", "\f" ].indexOf(char) !== -1
|
||||
}
|
||||
Reference in New Issue
Block a user