mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 10:00:49 +08:00
17 lines
338 B
JavaScript
17 lines
338 B
JavaScript
import isWhitespace from './isWhitespace.mjs';
|
|
|
|
/**
|
|
* Returns a Boolean indicating whether the input string is only whitespace.
|
|
*
|
|
* @param {string} input
|
|
* @returns {boolean}
|
|
*/
|
|
export default function isOnlyWhitespace(input) {
|
|
for (const element of input) {
|
|
if (!isWhitespace(element)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|