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

ag-reactive

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-reactive - npm Package Compare versions

Comparing version 1.0.9 to 1.0.10

12

Obj.d.ts

@@ -24,10 +24,10 @@ import { KeyType, KeyValue } from "./Types";

snapshot(): {
[k: string]: KeyValue;
[k: number]: KeyValue;
[k: symbol]: KeyValue;
[k: string]: NonNullable<KeyValue>;
[k: number]: NonNullable<KeyValue>;
[k: symbol]: NonNullable<KeyValue>;
};
lastSnapshot(): {
[k: string]: KeyValue;
[k: number]: KeyValue;
[k: symbol]: KeyValue;
[k: string]: NonNullable<KeyValue>;
[k: number]: NonNullable<KeyValue>;
[k: symbol]: NonNullable<KeyValue>;
};

@@ -34,0 +34,0 @@ getValue(key: KeyType): any;

@@ -107,3 +107,6 @@ "use strict";

for (var key in this.props) {
ret[key] = this.props[key].getFormatedValue();
var v = this.props[key].getFormatedValue();
if (v) {
ret[key] = v;
}
}

@@ -110,0 +113,0 @@ return ret;

{
"name": "ag-reactive",
"version": "1.0.9",
"version": "1.0.10",
"description": "",

@@ -5,0 +5,0 @@ "author": "",

@@ -11,3 +11,3 @@ export type KeyType = string | number | symbol;

v: {
[k: KeyType]: KeyValue;
[k: KeyType]: NonNullable<KeyValue>;
};

@@ -19,10 +19,2 @@ } | {

};
export type FormatedData = {
[k: string]: {
t: 'a' | 'o';
v: {
[k: KeyType]: KeyValue;
};
};
};
export type KeyDelta = {

@@ -29,0 +21,0 @@ [key: KeyType]: {

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