.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / isWhitespace.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Check if a character is whitespace.
6  */
7 module.exports = function(char /*: string*/) /*: boolean*/ {
8   return [" ", "\n", "\t", "\r", "\f"].indexOf(char) !== -1;
9 };