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

blob-to-it

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blob-to-it - npm Package Compare versions

Comparing version 1.0.4 to 2.0.0

dist/src/index.d.ts

158

package.json
{
"name": "blob-to-it",
"version": "1.0.4",
"version": "2.0.0",
"description": "Turns a blob into an async iterator",
"main": "index.js",
"repository": "github:achingbrain/it",
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/achingbrain/it/tree/master/packages/blob-to-it#readme",
"bugs": "https://github.com/achingbrain/it/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/achingbrain/it.git"
},
"bugs": {
"url": "https://github.com/achingbrain/it/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist/src",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"type": "deps",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "deps",
"section": "Dependencies"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"scripts": {
"test": "playwright-test",
"lint": "standard",
"coverage": "playwright-test",
"clean": "rm -rf dist",
"check": "npm run build:dep:types && tsc --noEmit",
"build": "npm run build:types",
"build:dep:types": "cd node_modules/browser-readablestream-to-it && npm run build:types",
"build:types": "npm run build:dep:types && tsc --emitDeclarationOnly --declarationDir dist",
"prepublishOnly": "npm run build"
"build": "aegir build",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"clean": "aegir clean",
"test": "aegir test -t browser",
"test:chrome": "aegir test -t browser --cov",
"test:chrome-webworker": "aegir test -t webworker",
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
"release": "aegir release"
},
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "ISC",
"dependencies": {
"browser-readablestream-to-it": "^1.0.3"
"browser-readablestream-to-it": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"it-all": "^1.0.6",
"mocha": "8.0.1",
"playwright-test": "^0.7.1",
"standard": "^16.0.3",
"typescript": "^4.0.2"
},
"types": "dist/index.d.ts",
"gitHead": "29126fa87dae108acef381693812f22ac8f9362b"
"aegir": "^37.5.0",
"it-all": "^2.0.0"
}
}

33

README.md

@@ -1,11 +0,19 @@

# blob-to-it
# blob-to-it <!-- omit in toc -->
[![Build status](https://github.com/achingbrain/it/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/achingbrain/it/actions/workflows/test.yml) [![Coverage Status](https://coveralls.io/repos/github/achingbrain/it/badge.svg?branch=master)](https://coveralls.io/github/achingbrain/it?branch=master) [![Dependencies Status](https://david-dm.org/achingbrain/it/status.svg?path=packages/it-all)](https://david-dm.org/achingbrain/it?path=packages/it-all)
[![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it)
[![CI](https://img.shields.io/github/workflow/status/achingbrain/it/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml)
> Turns a Blob into an async iterator
> Turns a blob into an async iterator
## Table of contents <!-- omit in toc -->
- [Install](#install)
- [Usage](#usage)
- [License](#license)
- [Contribute](#contribute)
## Install
```sh
$ npm install --save blob-to-it
```console
$ npm i blob-to-it
```

@@ -16,4 +24,4 @@

```javascript
const toIt = require('blob-to-it')
const all = require('it-all')
import toIt from 'blob-to-it'
import all from 'it-all'

@@ -26,1 +34,12 @@ const content = [ Uint8Array.from([0, 1, 2, 3, 4]) ]

```
## License
Licensed under either of
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
## Contribute
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
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