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

few

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

few - npm Package Versions

1.2.0

Diff

Changelog

Source

v1.2.0

  • Support yielding array / object of generator functions without initiating them:
yield [myGeneratorFunction, myGeneratorFunction()];  // Both works!
  • Support yielding generator functions and initialized generators with a simple yield:
// All of the below works!
yield* myGeneratorFunction();
yield myGeneratorFunction;
yield myGeneratorFunction();

yield* is still preferable since it performs a native delegation.

forter
published 1.1.0 •

Changelog

Source

v1.1.0

  • Add browser support with browserify
forter
published 1.0.0 •

Changelog

Source

v1.0.0

  • Initial release
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