Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gremlin-template-string

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gremlin-template-string - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

CHANGELOG.md

4

package.json
{
"name": "gremlin-template-string",
"version": "1.0.0",
"version": "2.0.0",
"description": "Generate Gremlin scripts with bound parameters using ES6 template strings",
"main": "index.js",
"main": "src/index.js",
"scripts": {

@@ -7,0 +7,0 @@ "test": "mocha --recursive --check-leaks test"

@@ -13,4 +13,4 @@ 'use strict';

assert.equal(query.script, "g.V('name', p1)")
assert.equal(query.params.p1, foo);
assert.equal(query.gremlin, "g.V('name', p1)")
assert.equal(query.bindings.p1, foo);
});

@@ -24,5 +24,5 @@

assert.equal(query.script, "\n alice = g.addVertex('name', p1)\n g.V()")
assert.equal(query.params.p1, foo);
assert.equal(query.gremlin, "\n alice = g.addVertex('name', p1)\n g.V()")
assert.equal(query.bindings.p1, foo);
});
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc