
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
japanese-numerals-to-number
Advanced tools
Converts Japanese Numerals into number
.
const ja2num = require('japanese-numerals-to-number');
const assert = require('assert');
assert(ja2num('〇') === 0);
assert(ja2num('一億二千三百四十五万六千七百八十九') === 123456789);
assert(ja2num('二千十七') === 2017);
assert(ja2num('二〇一七') === 2017); // supports positional notation
assert.throws(() => ja2num(null), TypeError);
assert.throws(() => ja2num('二十三十'), Error);
assert.throws(() => ja2num('億千万'), Error);
assert(ja2num('壱百壱拾') === 110); // supports formal numerals (daiji) used in legal documents
assert.throws(() => ja2num('一百一十'), Error);
0
(that is '〇'
) and Number.MAX_SAFE_INTEGER (9007199254740991
, that is '九千七兆千九百九十二億五千四百七十四万九百九十一'
). Any number larger than Number.MAX_SAFE_INTEGER
is not guaranteed.TypeError
when argument is not a string.Error
when argument is an invalid Japanese Numerals.〇
, 一
, 二
, 三
, 四
, 五
, 六
, 七
, 八
, 九
十
, 百
, 千
, 万
, 億
, 兆
壱
, 弐
, 参
, 拾
$ npm install japanese-numerals-to-number
Licensed under the MIT license.
FAQs
convert Japanese Numerals into number
The npm package japanese-numerals-to-number receives a total of 14,629 weekly downloads. As such, japanese-numerals-to-number popularity was classified as popular.
We found that japanese-numerals-to-number demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.