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

binary-types

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binary-types

helpers for binary-parser

  • 1.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34
increased by3300%
Maintainers
1
Weekly downloads
 
Created
Source

binary-types

helpers for binary-parser

Installation

npm install binary-types

API

'use strict'
module.exports = require('binary-parser')(parser)
var read = require('binary-types')

function* parser() {
  var value = yield* read.u8()
  return value
}

u8

u16le

u16be

u32le

u32be

f32le

f32be

f64le

f64be

what it says on the tin.

le

read.le =
  { __proto__: read
  , u16: read.u16le
  , u32: read.u32le
  , f32: read.f32le
  , f64: read.f64le
  }

be

read.be =
  { __proto__: read
  , u16: read.u16be
  , u32: read.u32be
  , f32: read.f32be
  , f64: read.f64be
  }

Keywords

FAQs

Package last updated on 31 May 2014

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