gremlin-script
Version:
Generate Gremlin scripts with ease
16 lines (11 loc) • 310 B
JavaScript
;
var inherits = require('util').inherits;
var Argument = require('./argument');
function ObjectArgument() {
Argument.apply(this, arguments);
}
inherits(ObjectArgument, Argument);
ObjectArgument.prototype.toGroovy = function() {
return this.stringify();
};
module.exports = ObjectArgument;