Bump version

pull/2/head
Louis Chatriot 12 years ago
parent 0d2b30e656
commit a262d9d136
  1. 2
      lib/model.js
  2. 2
      package.json

@ -242,7 +242,7 @@ matcherFunctions.$eq = function (obj, field, value) {
if (!obj) { return false; } // field cannot be empty here so that means there is no match
if (fieldParts.length === 1) {
return obj[fieldParts[0]] === value;
return obj[fieldParts[0]] === value; // TODO: check for real equality, incl. deep object equality
} else {
return matcherFunctions.$eq(obj[fieldParts[0]], fieldParts.slice(1), value);
}

@ -1,6 +1,6 @@
{
"name": "nedb",
"version": "0.3.3",
"version": "0.3.4",
"author": {
"name": "tldr.io",
"email": "hello@tldr.io"

Loading…
Cancel
Save