Gathering detailed insights and metrics for uint
Gathering detailed insights and metrics for uint
Gathering detailed insights and metrics for uint
Gathering detailed insights and metrics for uint
npm install uint
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
3 Stars
8 Commits
9 Forks
3 Watchers
1 Branches
3 Contributors
Updated on May 26, 2025
Latest Version
21.6.2
Package Id
uint@21.6.2
Unpacked Size
17.32 kB
Size
5.64 kB
File Count
5
NPM Version
7.7.6
Node Version
15.14.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
No dependencies detected.
Unsigned integer module from Glize library.
1npm install uint --save
1import {uint8, uint16, uint32} from 'uint'; 2 3/** 4 * Converts given <code>number</code> to unsigned int8. 5 * @param {number} number The number to be converted. 6 * @return {number} The unsigned (zero or positive) number. 7 */ 8console.log(uint8(0)); // 0 9console.log(uint8(1)); // 1 10console.log(uint8(255)); // 255 11console.log(uint8(256)); // NaN 12console.log(uint8(-256)); // NaN 13console.log(uint8(-1)); // NaN 14 15console.log(uint16(0)); // 0 16console.log(uint16(1)); // 1 17console.log(uint16(65535)); // 65535 18console.log(uint16(65536)); // NaN 19console.log(uint16(-65536)); // NaN 20console.log(uint16(-1)); // NaN 21 22console.log(uint32(0)); // 0 23console.log(uint32(1)); // 1 24console.log(uint32(4294967295)); // 4294967295 25console.log(uint32(4294967296)); // NaN 26console.log(uint32(-4294967296)); // NaN 27console.log(uint32(-1)); // NaN
For more information please visit Glize project page.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
SAST tool detected: CodeQL
Details
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/8 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Score
Last Scanned on 2025-07-14
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