ai/src/utils/includes.ts

11 lines
326 B
TypeScript
Raw Normal View History

2018-09-02 12:50:57 +00:00
import { hiraganaToKatagana, hankakuToZenkaku } from './japanese';
2018-08-31 08:24:07 +00:00
export default function(text: string, words: string[]): boolean {
if (text == null) return false;
text = hankakuToZenkaku(hiraganaToKatagana(text));
words = words.map(word => hiraganaToKatagana(word));
return words.some(word => text.includes(word));
}