diff options
Diffstat (limited to 'shell/db.js')
-rw-r--r-- | shell/db.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/db.js b/shell/db.js index 0aa80cdaf34..43d53cf96f5 100644 --- a/shell/db.js +++ b/shell/db.js @@ -367,7 +367,7 @@ DB.prototype.dbEval = DB.prototype.eval; keyf is a function which takes an object and returns the desired key. set either key or keyf (not both). * </p> */ -DB.prototype.group = function(parmsObj) { +DB.prototype.groupeval = function(parmsObj) { var groupFunction = function() { var parms = args[0]; @@ -412,6 +412,8 @@ DB.prototype.groupcmd = function( parmsObj ){ return ret.retval; } +DB.prototype.group = DB.prototype.groupcmd; + DB.prototype._groupFixParms = function( parmsObj ){ var parms = Object.extend({}, parmsObj); |