File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3214,13 +3214,13 @@ import { equals } from 'rambda'
32143214
32153215describe (' R.equals' , () => {
32163216 it(' happy' , () => {
3217- const result = equals (4 , 1 )
3217+ const result = equals (4 )( 1 )
32183218 result // $ExpectType boolean
32193219 })
32203220 it(' with object' , () => {
32213221 const foo = { a: 1 }
32223222 const bar = { a: 2 }
3223- const result = equals (foo , bar )
3223+ const result = equals (foo )( bar )
32243224 result // $ExpectType boolean
32253225 })
32263226 it(' curried' , () => {
Original file line number Diff line number Diff line change @@ -3214,13 +3214,13 @@ import { equals } from 'rambda'
32143214
32153215describe (' R.equals' , () => {
32163216 it(' happy' , () => {
3217- const result = equals (4 , 1 )
3217+ const result = equals (4 )( 1 )
32183218 result // $ExpectType boolean
32193219 })
32203220 it(' with object' , () => {
32213221 const foo = { a: 1 }
32223222 const bar = { a: 2 }
3223- const result = equals (foo , bar )
3223+ const result = equals (foo )( bar )
32243224 result // $ExpectType boolean
32253225 })
32263226 it(' curried' , () => {
Original file line number Diff line number Diff line change 2424 "**/*.js" : " yarn test:file"
2525 },
2626 "depFn" : [
27- " @definitelytyped/dtslint"
27+ " @definitelytyped/dtslint" ,
28+ " vitest" ,
29+ " typescript" ,
30+ " @vitest/coverage-v8" ,
31+ " @types/mocha" ,
32+ " @types/node"
2833 ],
2934 "type" : " module" ,
3035 "exports" : {
4348 "@types/mocha" : " 10.0.10" ,
4449 "@types/node" : " 24.10.1" ,
4550 "@vitest/coverage-v8" : " 4.0.10" ,
46- "helpers-fn" : " 2.0.0 " ,
47- "lodash" : " 4.17.21 " ,
51+ "helpers-fn" : " 2.1.1 " ,
52+ "lodash" : " 4.18.1 " ,
4853 "radashi" : " 13.0.0-beta.ffa4778" ,
4954 "rambdax" : " 11.3.1" ,
5055 "ramda" : " 0.32.0" ,
51- "remeda" : " 2.32.0 " ,
52- "rollup" : " 4.53.3 " ,
56+ "remeda" : " 2.34.1 " ,
57+ "rollup" : " 4.60.4 " ,
5358 "types-ramda" : " 0.31.0" ,
5459 "typescript" : " 6.0.0-dev.20251119" ,
5560 "vitest" : " 4.0.10"
102107 "sideEffects" : false ,
103108 "umd" : " ./dist/rambda.umd.js" ,
104109 "types" : " ./index.d.cts"
105- }
110+ }
You can’t perform that action at this time.
0 commit comments