Socket
Book a DemoInstallSign in
Socket

hanzenkaku

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hanzenkaku

Hankaku-Zenkaku Translator in JS

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
435
-79.99%
Maintainers
1
Weekly downloads
 
Created
Source

build status

hanzenkaku.js

A Hankaku-Zenkaku translator in JavaScript.

SYNOPSIS

FUNCTIONAL INTERFACE

All functions are under the HanZenKaku namespace.

HanZenKaku.h2z('コガイダン');            // コガイダン
HanZenKaku.z2h('コガイダン');         // コガイダン
HanZenKaku.hw2fw('dankogai');         // dankogai
HanZenKaku.fw2hw('dankogai'); // dankogai
HanZenKaku.fs2hs('dan kogai');       // dan kogai
HanZenKaku.hs2fs('dan kogai');        // dan kogai
HanZenKaku.h2k('こがいだん');         // コガイダン
HanZenKaku.k2h('コガイダン');         // こがいだん

OO INTERFACE

If your environment supports ECMASCript 5, `String.prototype' is exteneded as follows:

'コガイダン'.toZenkaku();            // HanZenKaku.h2z('コガイダン')
'コガイダン'.toHankaku();         // HanZenKaku.z2h('コガイダン')
'dankogai'.toFullwidth();         // HanZenKaku.hw2fw('dankogai')
'dankogai'.toHalfwidth(); // HanZenKaku.fw2hw('dankogai')
'dan kogai'.toHalfwidthSpace();  // HanZenKaku.fs2hs('dan kogai')
'dan kogai'.toFullwidthSpace();   // HanZenKaku.hs2fs('dan kogai')
'こがいだん'.toKatakana();        // HanZenKaku.h2k('こがいだん')
'コガイダン'.toHiragana();        // HanZenKaku.k2h('コガイダン')

This is more convenient than the functional version since you can take advantage of the method chain like:

'dan kogai'.toHalfwidth().toHalfwidthSpace();

ES5 is required to prevent from String.prototype from being enumerated so built-in objects like String are safely extended.

Keywords

Japanese

FAQs

Package last updated on 13 May 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts