New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

capillaries

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

capillaries - npm Package Versions

23

5.0.0

Diff

Changelog

Source

v5.0.0 (2024-06-22)

Enhancements
  • rewrite to typescript (bbb93e0)
  • improved typings (bbb93e0)
  • switch from jest to vitest (8b3855b)
sibiraj-s
published 4.1.0 •

Changelog

Source

v4.1.0 (2021-06-25)

Features
  • option to clear hooks with hook-name (2891432)
  • improved typings (a85d082)
sibiraj-s
published 4.0.0 •

Changelog

Source

v4.0.0 (2021-06-25)

Breaking Changes
  • wildcard events listeners will now receive event type as first argument (ab8df44)

Before

event.on('*', (payload) => {});

Now

event.on('*', (type, payload) => {});
sibiraj-s
published 3.2.0 •

Changelog

Source

v3.2.0 (2021-06-14)

Features
Bug Fixes
  • do not expose Map methods (54d4c1e)
sibiraj-s
published 3.1.1 •

Changelog

Source

v3.1.1 (2021-01-07)

Documentation
sibiraj-s
published 3.1.0 •

Changelog

Source

v3.1.0 (2021-01-07)

Enhancements
sibiraj-s
published 3.0.2 •

Changelog

Source

v3.0.2 (2021-01-07)

Documentation
sibiraj-s
published 3.0.1 •

Changelog

Source

v3.0.1 (2021-01-07)

Bug Fixes
  • update Event class export (02967b0)
sibiraj-s
published 3.0.0 •

Changelog

Source

v3.0.0 (2021-01-07)

Features
Breaking Changes

Before

const event = new Events();

const handler = () => {};

event.on('a', handler);

// To Unsubscribe
event.off('a', handler);
// or
event.off('a');

After

const event = new Events();

const handler = () => {};

const unsubscribe = event.on('a', handler);

// To Unsubscribe
unsubscribe();
// or
event.unbindAll('a');
sibiraj-s
published 2.1.2 •

Changelog

Source

v2.1.2 (2021-01-05)

Bug Fixes
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