Skip to content

Commit

Permalink
Merge pull request #28 from chequerNoel/patch-1
Browse files Browse the repository at this point in the history
Fix Wrong RegExp
  • Loading branch information
738 committed Oct 14, 2020
2 parents 89f2ea9 + 98d79d9 commit 825c47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -266,7 +266,7 @@

Inko.prototype.isํ•œ๊ธ€ = function (char) {
if (char.length > 1) throw new Error("ํ•œ ๊ธ€์ž๊ฐ€ ์•„๋‹™๋‹ˆ๋‹ค.");
return /[ใ„ฑ-ใ…Ž|ใ…-ใ…ฃ|๊ฐ€-ํžฃ]/.test(char);
return /[ใ„ฑ-ใ…Žใ…-ใ…ฃ๊ฐ€-ํžฃ]/.test(char);
}

// CommonJS module
Expand Down

0 comments on commit 825c47a

Please sign in to comment.