Socket
Socket
Sign inDemoInstall

realar

Package Overview
Dependencies
1
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.13 to 0.5.14

2

build/index.d.ts

@@ -40,3 +40,3 @@ import { FC } from 'react';

declare function ready<T = void>(init: T): Signal<T>;
declare function ready<T>(init: T, to: T): Signal<void>;
declare function ready<T = void>(init: T, to: T): Signal<void, T>;
declare function wrap<T, K, P>(target: Signal<T, K>, set: () => T, get: (data: K) => P): Signal<void, P>;

@@ -43,0 +43,0 @@ declare function wrap<T, K, P, M = T>(target: Signal<T, K>, set: (data: M) => T, get: (data: K) => P): Signal<M, P>;

{
"name": "realar",
"version": "0.5.13",
"version": "0.5.14",
"description": "React state manager",

@@ -88,3 +88,3 @@ "repository": {

},
"gitHead": "2abd0834743f277ab66100609057f0bc86f388d6"
"gitHead": "42299966aa3b1dbc543e380de3de04cde8d737db"
}

@@ -151,3 +151,3 @@ import React, { Context, FC } from 'react';

function ready<T = void>(init: T): Signal<T>;
function ready<T>(init: T, to: T): Signal<void>;
function ready<T = void>(init: T, to: T): Signal<void, T>;
function ready(init?: any, to?: any) {

@@ -154,0 +154,0 @@ let resolved = 0;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc