Ta funkcja sprawdza inne rodzaje białych znaków, a nie tylko spację (tabulator, powrót karetki itp.)
import some from 'lodash/fp/some'
const whitespaceCharacters = [' ', ' ',
'\b', '\t', '\n', '\v', '\f', '\r', `\"`, `\'`, `\\`,
'\u0008', '\u0009', '\u000A', '\u000B', '\u000C',
'\u000D', '\u0020','\u0022', '\u0027', '\u005C',
'\u00A0', '\u2028', '\u2029', '\uFEFF']
const hasWhitespace = char => some(
w => char.indexOf(w) > -1,
whitespaceCharacters
)
console.log(hasWhitespace('a'));
console.log(hasWhitespace(' '));
console.log(hasWhitespace(' '));
console.log(hasWhitespace('\r'));
Jeśli nie chcesz korzystać z Lodash , oto prosta some
implementacja z 2 s
:
const ssome = (predicate, list) =>
{
const len = list.length;
for(const i = 0; i<len; i++)
{
if(predicate(list[i]) === true) {
return true;
}
}
return false;
};
Następnie wystarczy zamienić some
z ssome
.
const hasWhitespace = char => some(
w => char.indexOf(w) > -1,
whitespaceCharacters
)
Dla tych w Node użyj:
const { some } = require('lodash/fp');