File tree Expand file tree Collapse file tree 4 files changed +2
-11
lines changed
Expand file tree Collapse file tree 4 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 11import * as R from "ramda" ;
22import * as dist from "ramda/dist/ramda" ;
33import * as distMin from "ramda/dist/ramda.min" ;
4- import * as src from "ramda/src" ;
54import * as srcIndex from "ramda/src/index" ;
65
76( async ( ) => {
87 const Res = await import ( "ramda" ) ;
9- const es = await import ( "ramda/es" ) ;
108 const esIndex = await import ( "ramda/es/index" ) ;
119
1210 let typeChecker : typeof R ;
1311 typeChecker = R ;
14- typeChecker = src ;
1512 typeChecker = srcIndex ;
1613 typeChecker = dist ;
1714 typeChecker = distMin ;
1815 typeChecker = Res ;
19- typeChecker = es ;
2016 typeChecker = esIndex ;
2117} ) ;
Original file line number Diff line number Diff line change 11import * as R from "ramda" ;
2- import { Ord } from "ramda/tools" ;
32
43( ( ) => {
5- function cmp ( obj : { x : Ord } ) {
4+ function cmp ( obj : { x : number | string | boolean | Date } ) {
65 return obj . x ;
76 }
87
Original file line number Diff line number Diff line change 11import * as R from "ramda" ;
2- import { Ord } from "ramda/tools" ;
32
43( ( ) => {
5- function cmp ( obj : { x : Ord } ) {
4+ function cmp ( obj : { x : number | string | boolean | Date } ) {
65 return obj . x ;
76 }
87
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments