Skip to content

Commit

Permalink
All tests passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Mar 12, 2015
1 parent 96271de commit b6865f8
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Expand Up @@ -151,4 +151,4 @@ p.get = get;
p.incr = incr;
p.incrby = incrby;
p.set = set;
p._set = set;
p._set = _set;
1 change: 1 addition & 0 deletions lib/del.js
@@ -1,4 +1,5 @@
import slice from './slice';
import { openDatabase } from './dbfunctions';

export function del() {
var self = this,
Expand Down
2 changes: 2 additions & 0 deletions lib/get.js
@@ -1,3 +1,5 @@
import { openDatabase } from './dbfunctions';

export function get(key, callback) {
var self = this;

Expand Down
1 change: 1 addition & 0 deletions lib/incr.js
@@ -1,5 +1,6 @@
import exists from './exists';
import isInt from './is_int';
import { openDatabase } from './dbfunctions';

export function incrby(key, increment, callback) {
var self = this;
Expand Down
1 change: 1 addition & 0 deletions lib/polyfill.js
@@ -1,3 +1,4 @@
"format cjs";

window.indexedDB = window.indexedDB
|| window.mozIndexedDB
Expand Down
2 changes: 2 additions & 0 deletions lib/set.js
@@ -1,3 +1,5 @@
import { openDatabase } from './dbfunctions';

export function set(key, value, callback) {
var self = this;

Expand Down
1 change: 1 addition & 0 deletions lib/trans.js
@@ -1,4 +1,5 @@
import Dict from './dict';
import { createUuid } from './uuid';

export default class Trans extends Dict {
add() {
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -4,6 +4,7 @@
"version": "0.1.2",
"devDependencies": {
"gulp": "^3.8.11",
"steal": "^0.7.1",
"steal-tools": "^0.7.1"
},
"system": {
Expand Down

0 comments on commit b6865f8

Please sign in to comment.