fix(windows): fix some startup problem under windows platform

This commit is contained in:
Alexey Kasyanchuk
2019-11-04 23:54:46 +03:00
parent d94656a347
commit 177d6ffc1a
5 changed files with 87 additions and 37 deletions

View File

@ -0,0 +1,7 @@
module.exports = (str) => {
for(let i = 0; i < str.length; i++) {
if(str.charCodeAt(i) > 191)
return false;
}
return true;
}