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

falcor-sync-model

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

falcor-sync-model - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

15

lib/index.js

@@ -36,2 +36,17 @@ 'use strict';

}
}, {
key: '_clone',
value: function _clone(opts) {
var clone = new SyncModel(this);
for (var key in opts) {
var value = opts[key];
if (value === 'delete') {
delete clone[key];
} else {
clone[key] = value;
}
}
clone.setCache = void 0;
return clone;
}
}]);

@@ -38,0 +53,0 @@

2

package.json
{
"name": "falcor-sync-model",
"version": "0.0.1",
"version": "0.0.2",
"description": "A Falcor model that can be read from synchronously",

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

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