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

@algebraic/type

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@algebraic/type - npm Package Compare versions

Comparing version

to
1.0.0-alpha.20

3

data.js

@@ -5,2 +5,3 @@ const of = require("./of");

const partition = require("@climb/partition");
const fromEntries = require("@climb/from-entries");

@@ -96,3 +97,3 @@ const { declaration, fNamed, is, getTypename, getKind } = require("./declaration");

compiled.computed,
Object.fromEntries(uncomputed));
fromEntries(uncomputed));

@@ -99,0 +100,0 @@ uncomputed.map(([name, value]) => defineProperty(this, name,

{
"name": "@algebraic/type",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "",

@@ -13,4 +13,5 @@ "main": "type.js",

"dependencies": {
"@climb/partition": "1.0.0-alpha.4"
"@climb/from-entries": "1.0.0-alpha.5",
"@climb/partition": "1.0.0-alpha.5"
}
}
const partition = require("@climb/partition");
const fromEntries = require("@climb/from-entries");

@@ -14,3 +15,3 @@

values,
Object.fromEntries(tuples.map(([name, source]) =>
fromEntries(tuples.map(([name, source]) =>
[name, insert(source, values)])));

@@ -17,0 +18,0 @@ const has = hasOwnProperty.call.bind(hasOwnProperty);