mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-01 11:12:18 +08:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
/**
|
|
* Check if a character is whitespace.
|
|
*
|
|
* @param {string} char
|
|
* @returns {boolean}
|
|
*/
|
|
export default function isWhitespace(char) {
|
|
return [' ', '\n', '\t', '\r', '\f'].includes(char);
|
|
}
|