UNPKG

jtc-utils

Version:
14 lines 433 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toHalfwidthAscii = toHalfwidthAscii; function toHalfwidthAscii(value) { if (!value) { return value; } return value.replace(/[\u3000\uFF01-\uFF5E]/g, (m) => { return m === "\u3000" ? " " : String.fromCharCode(m.charCodeAt(0) - 0xff01 + 0x21); }); } //# sourceMappingURL=toHalfwidthAscii.js.map