Skip to content

Releases: suwakei/deno-zhconv

1.2.0 Release

18 May 07:53

Choose a tag to compare

Functions

f2z(str: string): string

h2z returns string that converted from half width to full width.

z2h(str: string): string
z2h returns string that converted from full width to half width.

h2zAt(str: string,at: ...int): string
h2zAt returns string that converted from half width to full width.
Conversion string can be selected with the second argument.

z2hAt(str: string,at: ...int): string
z2hAt returns string that converted from full width to half width.
Conversion string can be selected with the second argument.

reverse(str: string): string
reverse returns a string with the characters in the string automatically converted

1.1.0 Release

14 May 18:18

Choose a tag to compare

Release

Functions

h2z(string) string

h2z returns string that converted from half width to full width.

z2h(string) string

z2h returns string that converted from full width to half width.

h2zAt(string, ...int) string

h2zAt returns string that converted from half width to full width.
Conversion string can be selected with the second argument.

z2hAt(string, ...int) string

z2hAt returns string that converted from full width to half width.
Conversion string can be selected with the second argument.

Features to be added

function reverse(str: string): string
reverse returns a string with the characters in the string automatically converted

Release

13 May 14:43

Choose a tag to compare

Release

Functions

h2z(str: string) string

h2z returns string that converted from half width to full width.

z2h(str: string) string

z2h returns string that converted from full width to half width.

Features to be added

h2zAt(str: string, ...at: number[]): string

h2zAt returns string that converted from half width to full width.
Conversion string can be selected with the second argument.

z2hAt(str: string, ...at: number[]): string

z2hAt returns string that converted from full width to half width.
Conversion string can be selected with the second argument.