blob: d3906aca67db5785408cbce632dab697b6fac22d [file] [log] [blame]
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;
}