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

patronum

Package Overview
Dependencies
Maintainers
1
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

patronum - npm Package Compare versions

Comparing version 0.8.0 to 0.9.0

status/index.d.ts

1

index.js

@@ -8,2 +8,3 @@ module.exports.condition = require('./condition');

module.exports.spread = require('./spread');
module.exports.status = require('./status');
module.exports.throttle = require('./throttle');

2

package.json
{
"name": "patronum",
"version": "0.8.0",
"version": "0.9.0",
"description": "☄️ Effector utility library delivering modularity and convenience",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -10,6 +10,10 @@ # effecto patronum ✨

- [Condition](#-condition)
- [Debounce](#-debounce)
- [Debug](#-debug)
- [Delay](#-delay)
- [Debounce](#-debounce)
- [Status](#-status)
- [Throttle](#-throttle)
- [Debug](#-debug)
---
- [Reshape](#-reshape)

@@ -145,2 +149,19 @@ - [Spread](#-spread)

## [🧁 Status](/status 'Documentation')
```ts
import { createEvent, createEffect } from 'effector';
import { status } from 'patronum/status';
const effect = createEffect().use(() => Promise.resolve(null));
const $status = status(effect);
$status.watch((value) => console.log(`status: ${value}`));
// => status: "initial"
effect();
// => status: "pending"
// => status: "done"
```
## [🍰 Reshape](/reshape 'Documentation')

@@ -147,0 +168,0 @@

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