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

store2

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

store2 - npm Package Compare versions

Comparing version 2.1.3 to 2.1.4

dist/store2.js

11

package.json
{
"name": "store2",
"version": "2.1.4",
"description": "Better localStorage",

@@ -11,3 +12,2 @@ "keywords": [

],
"version": "2.1.3",
"author": {

@@ -22,3 +22,4 @@ "name": "Nathan Bubna",

"files": [
"src"
"src",
"dist"
],

@@ -31,4 +32,4 @@ "main": "dist/store2.js",

"repository": {
"type" : "git",
"url" : "http://github.com/nbubna/store.git"
"type": "git",
"url": "http://github.com/nbubna/store.git"
},

@@ -60,2 +61,2 @@ "licenses": [

}
}
}

@@ -115,3 +115,4 @@ A feature-filled and friendly way to take advantage of localStorage and sessionStorage

* 2013-05-30 [v2.1.2][] (public) - Component support (old component.json is now bower.json)
* 2013-09-08 [v2.1.3][] (public) - Fix require path in component.js
* 2013-09-08 [v2.1.3][] (public) - Remove unnecessary component.js shim
* 2014-03-01 [v2.1.4][] (public) - Package definition and store.overlow.js updates

@@ -123,2 +124,3 @@ [v2.0.3]: https://github.com/nbubna/store/tree/2.0.3

[v2.1.3]: https://github.com/nbubna/store/tree/2.1.3
[v2.1.4]: https://github.com/nbubna/store/tree/2.1.4

@@ -139,1 +141,5 @@ ## Store vs Store

[other]: https://github.com/marcuswestin/store.js/
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/nbubna/store/trend.png)](https://bitdeli.com/free "Bitdeli Badge")

@@ -45,3 +45,6 @@ /**

if (e.name === 'QUOTA_EXCEEDED_ERR' ||
e.name === 'NS_ERROR_DOM_QUOTA_REACHED') {
e.name === 'NS_ERROR_DOM_QUOTA_REACHED' ||
e.toString().indexOf("QUOTA_EXCEEDED_ERR") != -1 ||
e.toString().indexOf("QuotaExceededError") != -1) {
// the e.toString is needed for IE9 / IE10, cos name is empty there
return _.set(_.overflow(area, true), key, string);

@@ -87,2 +90,2 @@ }

})(window.store, window.store._);
})(window.store, window.store._);
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