Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

arraybuffer.slice

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arraybuffer.slice

Exports a function for slicing ArrayBuffers (no polyfilling)

  • 0.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.4M
decreased by-10.15%
Maintainers
1
Weekly downloads
 
Created

What is arraybuffer.slice?

The arraybuffer.slice npm package provides a polyfill for the ArrayBuffer.prototype.slice method, which allows you to create a new ArrayBuffer that is a copy of a portion of an existing ArrayBuffer.

What are arraybuffer.slice's main functionalities?

Slice ArrayBuffer

This feature allows you to slice an ArrayBuffer from a start byte to an end byte, creating a new ArrayBuffer that contains the specified portion of the original buffer.

const arrayBuffer = new ArrayBuffer(8);
const view = new Uint8Array(arrayBuffer);
view.set([1, 2, 3, 4, 5, 6, 7, 8]);
const slicedBuffer = arrayBuffer.slice(2, 6);
const slicedView = new Uint8Array(slicedBuffer);
console.log(slicedView); // Output: Uint8Array [3, 4, 5, 6]

Other packages similar to arraybuffer.slice

FAQs

Package last updated on 29 Aug 2017

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