Socket
Socket
Sign inDemoInstall

typedarray

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typedarray

TypedArray polyfill for old browsers


Version published
Weekly downloads
17M
increased by5.68%
Maintainers
2
Weekly downloads
 
Created

What is typedarray?

The typedarray package provides a polyfill for TypedArray functionality that is available in modern browsers. It allows for the manipulation of binary data in a similar way to how it's done in native implementations.

What are typedarray's main functionalities?

Buffer creation

This feature allows for the creation of a buffer with a specified size. In this case, a Uint8Array with 1024 bytes is created.

var typedarray = require('typedarray');
var uint8 = new typedarray.Uint8Array(1024);

Buffer manipulation

This feature allows for the manipulation of the buffer's contents. Here, the first byte is set to 255 and the second byte to 0.

var typedarray = require('typedarray');
var buffer = new typedarray.Uint8Array(2);
buffer[0] = 255;
buffer[1] = 0;

Buffer slicing

This feature allows for the slicing of the buffer, creating a new view of the original buffer without copying the underlying memory. In this example, a slice from the second byte to the third byte is created.

var typedarray = require('typedarray');
var buffer = new typedarray.Uint8Array(4);
var slice = buffer.subarray(1, 3);

Other packages similar to typedarray

Keywords

FAQs

Package last updated on 12 Oct 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc