UNPKG
gremlin-script
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
Generate Gremlin scripts with ease
github.com/gulthor/gremlin-script
gulthor/gremlin-script
gremlin-script
/
src
/
functions
/
steps
/
step.js
13 lines
(8 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
var
inherits =
require
(
'util'
).
inherits
;
var
GremlinMethod
=
require
(
'../method'
);
function
GremlinStep
(
name, args
) {
GremlinMethod
.
apply
(
this
,
arguments
); }
inherits
(
GremlinStep
,
GremlinMethod
);
module
.
exports
=
GremlinStep
;