Socket
Socket
Sign inDemoInstall

@types/long

Package Overview
Dependencies
1
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/long

Stub TypeScript definitions entry for long, which provides its own types definitions


Version published
Maintainers
1
Weekly downloads
7,477,687
decreased by-7.17%

Weekly downloads

Package description

What is @types/long?

The @types/long package provides TypeScript type definitions for the long.js library, which is a comprehensive library for working with 64-bit integers. These type definitions enable TypeScript developers to use long.js in their projects with the benefits of TypeScript's static type checking. The long.js library itself allows for the representation, manipulation, and serialization of 64-bit integers, which are not natively supported in JavaScript due to its use of IEEE 754 floating-point numbers for all numeric values.

What are @types/long's main functionalities?

Creating long integers

This feature allows the creation of 64-bit integers. The code sample demonstrates how to create a long integer with the maximum signed positive value.

import * as Long from 'long';
let longVal = new Long(0xFFFFFFFF, 0x7FFFFFFF);

Arithmetic operations

This feature enables arithmetic operations such as addition, subtraction, multiplication, and division on 64-bit integers. The code sample shows how to add two Long instances.

import * as Long from 'long';
let longOne = Long.fromInt(1);
let longTwo = Long.fromInt(2);
let sum = longOne.add(longTwo);

Comparison

This feature allows for the comparison of long integers, including equality checks and relational comparisons. The code sample demonstrates checking if two Long instances are equal.

import * as Long from 'long';
let longOne = Long.fromInt(1);
let longTwo = Long.fromInt(2);
let isEqual = longOne.equals(longTwo);

Serialization

This feature supports the serialization of long integers to strings, which is useful for storage or transmission. The code sample shows how to serialize a Long instance to a string.

import * as Long from 'long';
let longVal = Long.fromInt(123456);
let serialized = longVal.toString();

Other packages similar to @types/long

Readme

Source

This is a stub types definition for @types/long (https://github.com/dcodeIO/long.js#readme).

long provides its own type definitions, so you don't need @types/long installed!

FAQs

Last updated on 10 Aug 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc