JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 63734742
  • Score
    100M100P100Q273862F
  • License MIT

Read/write IEEE754 floating point numbers from/to a Buffer or array-like object

Package Exports

  • ieee754

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ieee754) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ieee754

Build Status NPM Version NPM Gittip

Read/write IEEE754 floating point numbers from/to a Buffer or array-like object.

testling badge

install

npm install ieee754

methods

var ieee754 = require('ieee754')

The ieee754 object has the following functions:

ieee754.read = function (buffer, offset, isLE, mLen, nBytes)
ieee754.write = function (buffer, value, offset, isLE, mLen, nBytes)

The arguments mean the following:

  • buffer = the buffer
  • offset = offset into the buffer
  • value = value to set (only for write)
  • isLe = is little endian?
  • mLen = mantissa length
  • nBytes = number of bytes

what is ieee754?

The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation. Read more.

mit license

Copyright (C) 2013 Feross Aboukhadijeh & Romain Beauxis.