UNPKG

gremlin-script

Version:
16 lines (11 loc) 310 B
'use strict'; 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;