You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
357 B
20 lines
357 B
|
2 years ago
|
'use strict';
|
||
|
|
|
||
|
|
const isWhitespace = require('./isWhitespace');
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns a Boolean indicating whether the input string is only whitespace.
|
||
|
|
*
|
||
|
|
* @param {string} input
|
||
|
|
* @returns {boolean}
|
||
|
|
*/
|
||
|
|
module.exports = function isOnlyWhitespace(input) {
|
||
|
|
for (const element of input) {
|
||
|
|
if (!isWhitespace(element)) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return true;
|
||
|
|
};
|