Socket
Socket
Sign inDemoInstall

to-data-view

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    to-data-view

Create a `DataView` over an `ArrayBuffer`/8-bit typed array (commonly used in the browsers) or a `Buffer` (commonly used in Node.js).


Version published
Weekly downloads
333K
increased by21.71%
Maintainers
1
Install size
4.74 kB
Created
Weekly downloads
 

Readme

Source

To DataView

Create a DataView over an ArrayBuffer/8-bit typed array (commonly used in the browsers) or a Buffer (commonly used in Node.js).

Supported inputs:

  • ArrayBuffer
  • Buffer
  • Int8Array
  • Uint8Array
  • Uint8ClampedArray

Installation

npm install --save to-data-view

Usage

import toDataView from 'to-data-view'

// This function will accept both `ArrayBuffer` and `Buffer` as input
function awesomeParser (source) {
  const view = toDataView(source)

  // ...
}

API

toDataView(data)

  • data (ArrayBuffer | Int8Array | Uint8Array | Uint8ClampedArray, required)
  • returns DataView

Return a DataView instance that uses the same memory as the provided ArrayBuffer, 8-bit typed array or Buffer.

FAQs

Last updated on 24 Jul 2021

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