Gathering detailed insights and metrics for @japont/unicode-range
Gathering detailed insights and metrics for @japont/unicode-range
Gathering detailed insights and metrics for @japont/unicode-range
Gathering detailed insights and metrics for @japont/unicode-range
npm install @japont/unicode-range
69.3
Supply Chain
79.2
Quality
74.8
Maintenance
100
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
4 Stars
21 Commits
1 Forks
2 Watching
1 Branches
1 Contributors
Updated on 05 Jul 2022
TypeScript (100%)
Cumulative downloads
Total Downloads
Last day
166.7%
168
Compared to previous day
Last week
42.5%
660
Compared to previous week
Last month
41.3%
1,888
Compared to previous month
Last year
-31.9%
8,206
Compared to previous year
5
Unicode-range parser/builder.
1npm i @japont/unicode-range 2# - OR - 3yarn add @japont/unicode-range
1import { UnicodeRange } from '@japont/unicode-range'; 2 3// Parse ( e.g. U+30-39 -> [30, 31, ..., 39] ) 4const HiraganaUnicodeRangeList = ['U+3041-3096', 'U+3099-309F']; 5const HiraganaCodePointList = UnicodeRange.parse(HiraganaUnicodeRangeList); 6const Hiragana = HiraganaCodePointList.map(cp => String.fromCodePoint(cp))); 7console.log(Hiragana); 8 9// Stringify ( e.g. [30, 31, ..., 39] -> U+30-39 ) 10const Digit = '0123456789'; 11const DigitCodePointList = Digit.split('').map(c => c.codePointAt(0)); 12const DigitUnicodeRangeList = UnicodeRange.stringify(DigitCodePointList); 13console.log(NumericUnicodeRangeList);
PRs accepted.
MIT (c) 3846masa
No vulnerabilities found.
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
Found 0/21 approved changesets -- score normalized to 0
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
branch protection not enabled on development/release branches
Details
Reason
53 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More