Comparing version 0.7.0 to 0.8.0
The MIT License (MIT) | ||
Copyright (c) 2014-2015 Guillaume Plique (Yomguithereal) | ||
Copyright (c) 2014-2016 Guillaume Plique (Yomguithereal) | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
{ | ||
"name": "decypher", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"description": "A handful of cypher utilities for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -62,3 +62,6 @@ /** | ||
if (opts.label) | ||
pattern += ':' + escapeIdentifier(opts.label); | ||
if (Array.isArray(opts.label)) | ||
pattern += ':' + opts.label.map(escapeIdentifier).join(':'); | ||
else | ||
pattern += ':' + escapeIdentifier(opts.label); | ||
@@ -65,0 +68,0 @@ if (opts.data) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
699
21339
2
0