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

ember-cli-simple-store

Package Overview
Dependencies
Maintainers
2
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-simple-store - npm Package Compare versions

Comparing version 0.9.1 to 0.9.2

.npmignore

2

package.json
{
"name": "ember-cli-simple-store",
"version": "0.9.1",
"version": "0.9.2",
"description": "ember-cli addon that provides a simple identity map for ember.js web applications",

@@ -5,0 +5,0 @@ "directories": {

@@ -26,3 +26,3 @@ # ember-cli-simple-store

this.store.push("person", {id: 1, name: "toran"});
store.push("person", {id: 1, name: "toran"});
```

@@ -33,3 +33,3 @@

this.store.remove("person", 123);
store.remove("person", 123);
```

@@ -40,3 +40,3 @@

this.store.find("person");
store.find("person");
```

@@ -47,3 +47,3 @@

this.store.find("person", 123);
store.find("person", 123);
```

@@ -54,3 +54,3 @@

this.store.find("person", {account_id: 789});
store.find("person", {account_id: 789});
```

@@ -66,3 +66,3 @@

}
this.store.find("person", filter, ["salary", "name"]);
store.find("person", filter, ["salary", "name"]);
```

@@ -73,3 +73,3 @@

this.store.findOne("person");
store.findOne("person");
```

@@ -80,3 +80,3 @@

this.store.clear("person");
store.clear("person");
```

@@ -87,3 +87,3 @@

this.store.clear();
store.clear();
```

@@ -90,0 +90,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