Gathering detailed insights and metrics for @types/int53
Gathering detailed insights and metrics for @types/int53
Gathering detailed insights and metrics for @types/int53
Gathering detailed insights and metrics for @types/int53
The repository for high quality TypeScript type definitions.
npm install @types/int53
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,025 Stars
89,737 Commits
30,435 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 12, 2025
Latest Version
1.0.2
Package Id
@types/int53@1.0.2
Unpacked Size
6.95 kB
Size
1.84 kB
File Count
5
Published on
Nov 07, 2023
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
1
npm install --save @types/int53
This package contains type definitions for int53 (https://github.com/dannycoates/int53#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/int53.
1/// <reference types="node" /> 2 3/** 4 * Deserialize signed 64-bit int encoded as Big Endian (BE). 5 * 6 * @example 7 * import * as int53 from 'int53' 8 * 9 * int53.readInt64BE(Buffer.from('0000FFFFFFFFFFFF', 'hex')) // => 0xFFFFFFFFFFF 10 */ 11export function readInt64BE(buffer: Buffer, offset?: number): number; 12/** 13 * Deserialize signed 64-bit int encoded as Little Endian (LE). 14 * 15 * @example 16 * import * as int53 from 'int53' 17 * 18 * int53.readInt64LE(Buffer.from('ffffffffffff0000', 'hex')) // => 0xFFFFFFFFFFF 19 */ 20export function readInt64LE(buffer: Buffer, offset?: number): number; 21/** 22 * Deserialize unsigned 64-bit int encoded as Big Endian (BE). 23 * 24 * @example 25 * import * as int53 from 'int53' 26 * 27 * int53.readUInt64BE(Buffer.from('0000FFFFFFFFFFFF', 'hex')) // => 0xFFFFFFFFFFF 28 */ 29export function readUInt64BE(buffer: Buffer, offset?: number): number; 30/** 31 * Deserialize unsigned 64-bit int encoded as Little Endian (LE). 32 * 33 * @example 34 * import * as int53 from 'int53' 35 * 36 * int53.readUInt64LE(Buffer.from('ffffffffffff0000', 'hex')) // => 0xFFFFFFFFFFF 37 */ 38export function readUInt64LE(buffer: Buffer, offset?: number): number; 39/** 40 * Serialize signed 64-bit int encoded as Big Endian (BE). 41 * 42 * @example 43 * import * as int53 from 'int53' 44 * 45 * const buf = Buffer.alloc(8) 46 * int53.writeInt64BE(0xFFFFFFFFFFF, buf) 47 */ 48export function writeInt64BE(number: number, buffer: Buffer, offset?: number): void; 49/** 50 * Serialize signed 64-bit int encoded as Little Endian (LE). 51 * 52 * @example 53 * import * as int53 from 'int53' 54 * 55 * const buf = Buffer.alloc(8) 56 * int53.writeInt64LE(0xFFFFFFFFFFF, buf) 57 */ 58export function writeInt64LE(number: number, buffer: Buffer, offset?: number): void; 59/** 60 * Serialize unsigned 64-bit int encoded as Big Endian (BE). 61 * 62 * @example 63 * import * as int53 from 'int53' 64 * 65 * const buf = Buffer.alloc(8) 66 * int53.writeUInt64BE(0xFFFFFFFFFFF, buf) 67 */ 68export function writeUInt64BE(number: number, buffer: Buffer, offset?: number): void; 69/** 70 * Serialize unsigned 64-bit int encoded as Little Endian (LE). 71 * 72 * @example 73 * import * as int53 from 'int53' 74 * 75 * const buf = Buffer.alloc(8) 76 * int53.writeUInt64LE(0xFFFFFFFFFFF, buf) 77 */ 78export function writeUInt64LE(number: number, buffer: Buffer, offset?: number): void; 79
These definitions were written by BendingBender.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-07
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