JSPM

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

Cross-platform Blob implementation for NodeJS and the Web.

Package Exports

  • cross-blob

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 (cross-blob) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Cross Blob Travis CI Build Status

Cross-platform Blob implementation for Node.js and the Web.

NPM Badge

Install

npm install cross-blob

Usage

const Blob = require("cross-blob");

new Blob([]);
//=> Blob {size: 0, type: ""}

// Global patch (to support external modules like is-blob).
globalThis.Blob = Blob;

API

Blob extends Blob