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

jarmlib

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jarmlib - npm Package Compare versions

Comparing version 1.0.67 to 1.0.68

16

index.js

@@ -17,2 +17,7 @@ const LunaJS = {};

this.selectDistinct = function () {
this.query += "SELECT DISTINCT ";
return this;
};
this.props = function (props) {

@@ -213,2 +218,13 @@ if (!props) { return this; }

this.offset = function (offset) {
if (!offset) { return this; }
if (offset) {
this.query += " OFFSET ?";
this.values.push(offset);
}
return this;
};
this.build = function () {

@@ -215,0 +231,0 @@ return {

2

package.json
{
"name": "jarmlib",
"version": "1.0.67",
"version": "1.0.68",
"description": "Back-end framework",

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

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