A library for conversion of Japanese half/full-width characters.
npm install https://github.com/iwstkhr/japanese-width.git
import { toFullWidth, toHalfWidth } from '@iwstkhr/japanese-width';
// Output "Hello World ! ハローワールド" 2022
console.info(toFullWidth('Hello World ! ハローワールド 2022'));
// Output Hello World ! ハローワールド 2022
console.info(toHalfWidth('Hello World ! ハローワールド 2022'));
MIT