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

sparqlalgebrajs

Package Overview
Dependencies
Maintainers
0
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sparqlalgebrajs - npm Package Compare versions

Comparing version 4.3.6 to 4.3.7

3

lib/factory.js

@@ -99,2 +99,5 @@ "use strict";

createTerm(str) {
if (str[0] === '$') {
str = str.replace('$', '?');
}
return (0, rdf_string_1.stringToTerm)(str, this.dataFactory);

@@ -101,0 +104,0 @@ }

@@ -122,4 +122,8 @@ "use strict";

// Some variables are hidden in keys (specifically for VALUES)
if (key.startsWith('?'))
if (key.startsWith('?')) {
variables.add(key);
}
else if (key.startsWith('$')) {
variables.add(`?${key.slice(1)}`);
}
findAllVariables(thingy[key]);

@@ -126,0 +130,0 @@ }

2

package.json
{
"name": "sparqlalgebrajs",
"version": "4.3.6",
"version": "4.3.7",
"description": "Convert SPARQL to SPARQL algebra",

@@ -5,0 +5,0 @@ "author": "Joachim Van Herwegen",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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