UNPKG

gremlin-script

Version:
18 lines (13 loc) 283 B
'use strict'; function JavaClass(name) { this.name = name; } JavaClass.prototype.toGroovy = function() { return this.name + '.class'; }; Object.defineProperty(JavaClass.prototype, 'class', { get: function() { return this.toGroovy(); } }); module.exports = JavaClass;