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

@qubejs/core

Package Overview
Dependencies
Maintainers
0
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qubejs/core - npm Package Compare versions

Comparing version 0.5.0-beta.26 to 0.5.0-beta.27

2

package.json
{
"name": "@qubejs/core",
"version": "0.5.0-beta.26",
"version": "0.5.0-beta.27",
"main": "./src/index.js",
"type": "commonjs"
}

@@ -44,2 +44,20 @@ "use strict";

},
forceNull: (value) => {
if (!common_1.default.isNullOrUndefinedBlank(value)) {
return value;
}
return null;
},
forceBlank: (value) => {
if (!common_1.default.isNullOrUndefinedBlank(value)) {
return value;
}
return "";
},
nonBlank: (value) => {
if (!common_1.default.isNullOrUndefinedBlank(value)) {
return value;
}
return undefined;
},
},

@@ -46,0 +64,0 @@ array: {

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