1.0.3 • Published 8 months ago

fullwidth-halfwidth-convertor v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

Fullwidth Halfwidth Convertor v1.0.3

Coverage Status

Installation

Using npm:

$ npm i -g npm
$ npm i --save fullwidth-halfwidth-convertor

In Node.js

Commonjs

const { halfToFull, fullToHalf } = require('fullwidth-halfwidth-convertor');

console.log(fullToHalf('フール'));

console.log(halfToFull('フール'));

Modulejs or Typescript

import { halfToFull, fullToHalf } from 'fullwidth-halfwidth-convertor';

console.log(fullToHalf('フール'));

console.log(halfToFull('フール'));