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.51 to 0.2.52

10

lib/calcit.procs.js

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

for (let item of x.items()) {
result.push(to_js_data(item), addColon);
result.push(to_js_data(item, addColon));
}

@@ -850,5 +850,5 @@ return result;

}
if (x instanceof Set) {
if (x instanceof CrDataSet) {
let result = new Set();
x.forEach((v) => {
x.value.forEach((v) => {
result.add(to_js_data(v, addColon));

@@ -1033,5 +1033,5 @@ });

}
if (x instanceof Set) {
if (x instanceof CrDataSet) {
let buffer = ["#{}"];
for (let y of x) {
for (let y of x.value) {
buffer.push(to_cirru_edn(y));

@@ -1038,0 +1038,0 @@ }

@@ -937,3 +937,3 @@ import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree";

for (let item of x.items()) {
result.push(to_js_data(item), addColon);
result.push(to_js_data(item, addColon));
}

@@ -950,5 +950,5 @@ return result;

}
if (x instanceof Set) {
if (x instanceof CrDataSet) {
let result = new Set();
x.forEach((v) => {
x.value.forEach((v) => {
result.add(to_js_data(v, addColon));

@@ -1150,5 +1150,5 @@ });

}
if (x instanceof Set) {
if (x instanceof CrDataSet) {
let buffer: CirruEdnFormat = ["#{}"];
for (let y of x) {
for (let y of x.value) {
buffer.push(to_cirru_edn(y));

@@ -1155,0 +1155,0 @@ }

{
"name": "@calcit/procs",
"version": "0.2.51",
"version": "0.2.52",
"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