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

check-iterable

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

check-iterable - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

index.cjs

79

package.json
{
"name": "check-iterable",
"version": "1.1.0",
"description": "A toolbox to check if an object is iterable, an iterator or a generator, etc.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "npm link @babel/core && mv index.js index.mjs && babel --presets @babel/env -o index.js index.mjs",
"postpublish": "mv index.mjs index.js",
"pretest": "tsc test/index.ts --module commonjs --target es2015 && npm run prepublishOnly",
"posttest": "npm run postpublish && rm test/index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayonli/check-iterable.git"
},
"keywords": [
"iterable",
"iterator",
"generator",
"IterableIterator",
"AsyncIterable",
"AsyncIterator",
"AsyncIterableIterator"
],
"author": "A-yon Lee <the@ayon.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayonli/check-iterable/issues"
},
"homepage": "https://github.com/ayonli/check-iterable#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.17",
"mocha": "^6.1.4"
}
"name": "check-iterable",
"version": "1.2.0",
"description": "A toolbox to check if an object is iterable, an iterator or a generator, etc.",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "index.d.ts",
"exports": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"scripts": {
"test": "mocha test.cjs && mocha test.mjs",
"test:bun": "bun run ./node_modules/mocha/bin/mocha test.cjs && bun run ./node_modules/mocha/bin/mocha test.mjs",
"test:deno": "deno run test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayonli/check-iterable.git"
},
"keywords": [
"iterable",
"iterator",
"generator",
"IterableIterator",
"AsyncIterable",
"AsyncIterator",
"AsyncIterableIterator"
],
"author": "A-yon Lee <the@ayon.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayonli/check-iterable/issues"
},
"homepage": "https://github.com/ayonli/check-iterable#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}
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