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

leoric

Package Overview
Dependencies
Maintainers
2
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leoric - npm Package Compare versions

Comparing version 2.10.0 to 2.10.1

2

package.json
{
"name": "leoric",
"version": "2.10.0",
"version": "2.10.1",
"description": "JavaScript Object-relational mapping alchemy",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -38,3 +38,4 @@ 'use strict';

if (entry.isFile() && ['.js', '.mjs'].includes(extname)) {
const model = require(path.join(dir, entry.name));
const exports = require(path.join(dir, entry.name));
const model = exports.__esModule ? exports.default : exports;
if (isBone(model)) models.push(model);

@@ -41,0 +42,0 @@ }

@@ -390,3 +390,2 @@ 'use strict';

Object.assign(this, {
columns: [],
whereConditions: [],

@@ -811,2 +810,3 @@ groups: [],

const spell = this.dup;
spell.columns = [];
this.#emptySpell();

@@ -813,0 +813,0 @@ this.table = { type: 'subquery', value: spell };

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