この関数は、スペース(タブ、キャリッジリターンなど)だけでなく、他の種類の空白をチェックします。
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')); // a, false
console.log(hasWhitespace(' ')); // space, true
console.log(hasWhitespace(' ')); // tab, true
console.log(hasWhitespace('\r')); // carriage return, true
Lodashを使用したくない場合は、some
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;
};
それからちょうど置き換えるsome
とssome
。
const hasWhitespace = char => some(
w => char.indexOf(w) > -1,
whitespaceCharacters
)
ノードの場合は、以下を使用します。
const { some } = require('lodash/fp');