@ctx-core/combinators
Advanced tools
Comparing version 4.0.18 to 4.1.0
@@ -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; |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4078
113