Skip to content

Commit

Permalink
fix: #22 is한글 함수에서 "가" ~ "긯" 범위를 한글로 인식하지 않는 버그 수정, 버전 1.0.7로 올림
Browse files Browse the repository at this point in the history
  • Loading branch information
지준우 committed Apr 21, 2019
1 parent 14dbda6 commit 7bb6bce
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
| v1.0.4 | 2018.08.11 | [#4](https://github.com/738/inko/issues/4) Gulp로 workflow 자동화 (inko.min.js 파일 생성), [#8](https://github.com/738/inko/issues/8) Bower에 라이브러리 등록 | [738](https://github.com/738) |
| v1.0.5 | 2018.08.11 | inko.js에서 `package.json` 파일을 import하는 부분 제거 | [738](https://github.com/738) |
| v1.0.6 | 2018.08.25 | [#12](https://github.com/738/inko/issues/12) hlhlhl -> ㅚㅗㅣㅗㅣ로 변환되는 버그 수정, [#14](https://github.com/738/inko/issues/14) rtk -> ꦵ로 변환되는 버그 수정, [#15](https://github.com/738/inko/issues/15) 복자음 가능 여부 옵션화, `config` 함수 추가 | [algoshipda](https://github.com/algoshipda), [738](https://github.com/738) |
| v1.0.7 | 2019.04.21 | [#22](https://github.com/738/inko/issues/22) `is한글` 함수에서 "가" ~ "긯" 범위를 한글로 인식하지 않는 버그 수정 | [738](https://github.com/738), [EntryDark](https://github.com/EntryDark) |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inko",
"version": "1.0.6",
"version": "1.0.7",
"description": "영타를 한글로 쳤을 때, 혹은 한타를 영어로 변환해주는 기능을 가진 자바스크립트 오픈소스 라이브러리입니다.",
"main": "inko.js",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions inko.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
option.allowDoubleConsonant : false;
}

Inko.prototype.VERSION = '1.0.6';
Inko.prototype.VERSION = '1.0.7';

Inko.prototype.en2ko = function (eng, _option) {
var option = _option || {};
Expand Down 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
2 changes: 1 addition & 1 deletion inko.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion inko.min.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "inko",
"version": "1.0.6",
"version": "1.0.7",
"description": "영타를 한글로 쳤을 때, 혹은 한타를 영어로 변환해주는 기능을 가진 자바스크립트 오픈소스 라이브러리입니다.",
"bugs": {
"url": "https://github.com/jonjee/inko/issues",
"url": "https://github.com/738/inko/issues",
"email": "jydrogen@gmail.com"
},
"main": "inko.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"repository": {
"type": "git",
"url": "git@github.com:JonJee/inko.git"
"url": "git@github.com:738/inko.git"
},
"author": "Jon Jee",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion test/inko.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var inko = new Inko();
describe('inko', () => {
console.log(`The version of inkojs is ${inko.VERSION}`);
it('is한글', () => {
const 한글배열 = ['ㄱ', 'ㄴ', 'ㅇ', 'ㅎ', 'ㅍ', 'ㅋ', '기', '긹', '닙', 'ㅜ', 'ㅢ', '뷁', '챀', '팥'];
const 한글배열 = ['ㄱ', 'ㄴ', 'ㅇ', 'ㅎ', 'ㅍ', 'ㅋ', '기', '긹', '닙', 'ㅜ', 'ㅢ', '뷁', '챀', '팥', '가', '긯'];
const 다른배열 = ['s', '1', 'D', '#', 'R', 'B', 'C', '9', 'a', ';', '=', '6', '3', 'P'];
한글배열.forEach(value => {
assert.equal(inko.is한글(value), true, `is한글(${value})에 잘못된 값이 나왔습니다.`);
Expand Down

0 comments on commit 7bb6bce

Please sign in to comment.