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
/
boundparameter.js
7 lines
(5 loc)
•
105 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
function
BoundParameter
(
value
) {
this
.
value
= value; }
module
.
exports
=
BoundParameter
;