New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sqb-serializer-oracle

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqb-serializer-oracle - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3

10

lib/serializer.js

@@ -21,5 +21,7 @@ /* sqb-serializer-oracle

constructor() {
// noinspection JSUnusedGlobalSymbols
this.paramType = 0;
}
// noinspection JSMethodCanBeStatic, JSUnusedGlobalSymbols
isReserved(ctx, s) {

@@ -29,2 +31,3 @@ return reservedWords.indexOf(String(s).toLowerCase()) >= 0;

// noinspection JSUnusedGlobalSymbols
serialize(ctx, type, o, defFn) {

@@ -45,2 +48,3 @@ switch (type) {

// noinspection JSMethodCanBeStatic
serializeSelect(ctx, o, defFn) {

@@ -77,2 +81,3 @@ let out = defFn(ctx, o);

// noinspection JSMethodCanBeStatic
serializeFrom(ctx, o, defFn) {

@@ -82,2 +87,3 @@ return defFn() || 'from dual';

// noinspection JSMethodCanBeStatic
serializeOperator(ctx, o, defFn) {

@@ -91,2 +97,3 @@ if (o.operatorType === 'eq' && o.value1 === 'null')

// noinspection JSMethodCanBeStatic
serializeDateValue(ctx, o, defFn) {

@@ -99,3 +106,4 @@ const s = defFn(ctx, o);

serializeReturning(ctx, arr, defFn) {
// noinspection JSMethodCanBeStatic
serializeReturning(ctx, arr) {
let out = '';

@@ -102,0 +110,0 @@ for (const [i, o] of arr.entries()) {

6

package.json
{
"name": "sqb-serializer-oracle",
"description": "SQB serialization plugin for Oracle database",
"version": "3.0.2",
"version": "3.0.3",
"author": "Panates Ltd.",

@@ -28,6 +28,6 @@ "contributors": [

"mocha": "^5.2.0",
"sqb": "^3.2.2"
"sqb": "^3.2.4"
},
"peerDependencies": {
"sqb": ">=3.2.2"
"sqb": ">=3.2.4"
},

@@ -34,0 +34,0 @@ "engines": {

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