[fix] Fix for #65

master
indexzero 2012-12-20 18:03:37 -05:00
parent 0d795ecf81
commit 60456186d7
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ Memory.prototype.get = function (key) {
//
while (path.length > 0) {
key = path.shift();
if (target && key in target) {
if (target && typeof target !== 'string' && key in target) {
target = target[key];
continue;
}