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