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

Fixes #27.
This commit is contained in:
Maciej Małecki 2011-12-25 15:30:48 +01:00
parent d5ce1ed68f
commit 963387cfd4

View file

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