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

@calcit/procs

Package Overview
Dependencies
Maintainers
1
Versions
401
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@calcit/procs - npm Package Compare versions

Comparing version 0.2.43 to 0.2.44

8

lib/calcit.procs.js

@@ -913,3 +913,3 @@ var _a;

export let _AND_str_DASH_concat = (a, b) => {
return `${a}${b}`;
return `${toString(a, false)}${toString(b, false)}`;
};

@@ -1119,2 +1119,5 @@ export let sort = (f, xs) => {

export let to_DASH_js_DASH_data = (x, addColon = false) => {
if (x == null) {
return null;
}
if (x === true || x === false) {

@@ -1161,2 +1164,5 @@ return x;

export let to_DASH_calcit_DASH_data = (x, noKeyword = false) => {
if (x == null) {
return null;
}
if (typeof x === "number") {

@@ -1163,0 +1169,0 @@ return x;

@@ -1049,3 +1049,3 @@ import {

export let _AND_str_DASH_concat = (a: string, b: string) => {
return `${a}${b}`;
return `${toString(a, false)}${toString(b, false)}`;
};

@@ -1302,2 +1302,5 @@ export let sort = (f: CrDataFn, xs: CrDataList): CrDataList => {

): any => {
if (x == null) {
return null;
}
if (x === true || x === false) {

@@ -1345,2 +1348,5 @@ return x;

export let to_DASH_calcit_DASH_data = (x: any, noKeyword: boolean = false) => {
if (x == null) {
return null;
}
if (typeof x === "number") {

@@ -1347,0 +1353,0 @@ return x;

2

package.json
{
"name": "@calcit/procs",
"version": "0.2.43",
"version": "v0.2.44",
"main": "./lib/calcit.procs.js",

@@ -5,0 +5,0 @@ "devDependencies": {

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