Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Lukince/Hangul4deno
Browse files Browse the repository at this point in the history
  • Loading branch information
qluana7 committed Oct 28, 2021
2 parents 26fbcfc + 532dc5f commit 9121755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
### Assemble, Disassemble Hangul

```ts
import { Assembler } from "https://deno.land/x/hangul@1.0.0/mod.ts"
import { Assembler } from "https://deno.land/x/hangul@1.2.0/mod.ts"

const hello = Assembler.assemble(['', '', '', '', '', '']);

Expand All @@ -32,7 +32,7 @@ const dishello = Assembler.disassemble("안녕하세요");
**Note : This is not a translation. This'll assemble after converting according to the QWERTY keyboard**

```ts
import { Hangul } from "https://deno.land/x/hangul@1.0.0/mod.ts"
import { Hangul } from "https://deno.land/x/hangul@1.2.0/mod.ts"

console.log(Hangul.engToKor("dkssud tprP!"));
// log : 안녕 세계!
Expand All @@ -44,7 +44,7 @@ console.log(Hangul.korToEng("안녕 세계!"));
### Build hangul with initial, neutral and final

```ts
import { HangulBuilder } from "https://deno.land/x/hangul@1.0.0/mod.ts"
import { HangulBuilder } from "https://deno.land/x/hangul@1.2.0/mod.ts"

const builder1 = new HangulBuilder();

Expand Down

0 comments on commit 9121755

Please sign in to comment.