Skip to content

Commit 8f48e25

Browse files
committed
chore@small
1 parent 2629365 commit 8f48e25

4 files changed

Lines changed: 169 additions & 231 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3214,13 +3214,13 @@ import { equals } from 'rambda'
32143214

32153215
describe('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', () => {

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3214,13 +3214,13 @@ import { equals } from 'rambda'
32143214

32153215
describe('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', () => {

package.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@
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": {
@@ -43,13 +48,13 @@
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"
@@ -102,4 +107,4 @@
102107
"sideEffects": false,
103108
"umd": "./dist/rambda.umd.js",
104109
"types": "./index.d.cts"
105-
}
110+
}

0 commit comments

Comments
 (0)