started working on bug fixes and test scripts

This commit is contained in:
Amish Shah
2015-12-04 20:30:11 +00:00
parent fdf1107404
commit ac2398e47c
30 changed files with 209 additions and 40 deletions

View File

@@ -17,8 +17,8 @@ export default class Cache extends Array {
return found;
}
has(key, value) {
return !!this.get(key, value);
has(object) {
return !!this.get(this.discrim, object[this.discrim]);
}
getAll(key, value) {