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

@ctx-core/combinators

Package Overview
Dependencies
Maintainers
1
Versions
375
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ctx-core/combinators - npm Package Compare versions

Comparing version 4.0.18 to 4.1.0

1

lib/index.d.ts

@@ -14,1 +14,2 @@ /**

export declare const Y: (f: any) => any;
export declare function I__(x: any, ..._: any[]): any;

@@ -18,2 +18,5 @@ 'use strict';

const Y = f => (g => g(g))(g => f(x => g(g)(x)));
function I__(x, ..._) {
return x;
}

@@ -24,2 +27,3 @@ exports.A = A;

exports.I = I;
exports.I__ = I__;
exports.K = K;

@@ -26,0 +30,0 @@ exports.P = P;

4

package.json
{
"name": "@ctx-core/combinators",
"version": "4.0.18",
"version": "4.1.0",
"description": "ctx-core combinators",

@@ -37,3 +37,3 @@ "main": "lib/index.js",

},
"gitHead": "ba377cb3f63a4fe53c76162429610273ec300c7d"
"gitHead": "c49578e400f19efdb5e7b75912f031e95f0fb63f"
}

@@ -14,1 +14,4 @@ /**

export const Y = f => (g => g(g))(g => f(x => g(g)(x)))
export function I__(x, ..._) {
return x
}

Sorry, the diff of this file is not supported yet

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