From c2efdd8169854483e81ab64cda55453e6b6346ad Mon Sep 17 00:00:00 2001 From: Stijn de Witt Date: Fri, 21 Aug 2015 01:34:04 +0200 Subject: [PATCH] 0.9.1: renamed from `memstore` to `memorystorage` --- README.md | 10 +++++----- dist/memorystorage.min.js | 2 +- package.json | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 18b38bc..6cdbcd8 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -# memorystorage v0.9.0 +# memorystorage v0.9.1 Memory-backed storage object that implements the [Web Storage API](http://www.w3.org/TR/webstorage/). ## Download -* [memorystorage.js](https://cdn.rawgit.com/download/memorystorage/0.9.0/src/memorystorage.js) (~3kB, commented) -* [memorystorage.min.js](https://cdn.rawgit.com/download/memorystorage/0.9.0/dist/memorystorage.min.js) (~2kB, minified) -* [memorystorage.min.js.map](https://cdn.rawgit.com/download/memorystorage/0.9.0/dist/memorystorage.min.js.map) (~2kB, debug map file) +* [memorystorage.js](https://cdn.rawgit.com/download/memorystorage/0.9.1/src/memorystorage.js) (~3kB, commented) +* [memorystorage.min.js](https://cdn.rawgit.com/download/memorystorage/0.9.1/dist/memorystorage.min.js) (~2kB, minified) +* [memorystorage.min.js.map](https://cdn.rawgit.com/download/memorystorage/0.9.1/dist/memorystorage.min.js.map) (~2kB, debug map file) ## Include on your page `memorystorage` can be used directly from CDN, or from a local script file. ### CDN ```xml - + ``` ### Local script file diff --git a/dist/memorystorage.min.js b/dist/memorystorage.min.js index 4ffaee8..86d5ab1 100644 --- a/dist/memorystorage.min.js +++ b/dist/memorystorage.min.js @@ -1,3 +1,3 @@ -/*! [memorystorage 0.9.0](http://download.github.io/memorystorage) Copyright 2015 by [Stijn de Witt](http://StijnDeWitt.com). Some rights reserved. Licensed under [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/). */ +/*! [memorystorage 0.9.1](http://download.github.io/memorystorage) Copyright 2015 by [Stijn de Witt](http://StijnDeWitt.com). Some rights reserved. Licensed under [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/). */ !function(u,m,d){"function"==typeof define&&define.amd?define(d):"object"==typeof exports?module.exports=d():u[m]=d()}(this,"MemoryStorage",function(){"use strict";function MemoryStorage(b){this.id=b||"global",a[this.id]||(a[this.id]={});var c=Object.keys(a[this.id]);Object.defineProperty(this,"length",{enumerable:!0,get:function(){return c.length}}),this.getItem=function(b){return a[this.id][b]},this.setItem=function(b,e){b in a[this.id]||c.push(b),a[this.id][b]=e},this.removeItem=function(b){b in a[this.id]&&(c.splice(c.indexOf(b),1),delete a[this.id][b])},this.key=function(a){return a>=0&&a