[api] `File.saveSync()` should return store content

Fixes #27.
master
Maciej Małecki 2011-12-25 15:30:48 +01:00
parent d5ce1ed68f
commit 963387cfd4
1 changed files with 3 additions and 1 deletions

View File

@ -69,6 +69,7 @@ File.prototype.saveSync = function (value) {
catch (ex) {
throw(ex);
}
return this.store;
};
//
@ -221,4 +222,5 @@ File.prototype.search = function (base) {
this.file = fullpath || this.file;
return fullpath;
};
};