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

@ronin/compiler

Package Overview
Dependencies
Maintainers
0
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ronin/compiler - npm Package Compare versions

Comparing version 0.8.1 to 0.8.2

5

dist/index.js

@@ -109,3 +109,6 @@ // src/utils/helpers.ts

if (value === null) return "NULL";
if (!statementParams) return JSON.stringify(value);
if (!statementParams) {
const valueString = typeof value === "object" ? JSON.stringify(value) : value.toString();
return `'${valueString}'`;
}
let formattedValue = value;

@@ -112,0 +115,0 @@ if (Array.isArray(value) || isObject(value)) {

2

package.json
{
"name": "@ronin/compiler",
"version": "0.8.1",
"version": "0.8.2",
"type": "module",

@@ -5,0 +5,0 @@ "description": "Compiles RONIN queries to SQL statements.",

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