Skip to content

Commit

Permalink
feat@fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
selfrefactor committed Aug 23, 2024
1 parent 9718951 commit d6c0878
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions files/NEXT_VERSION_CHECKLIST.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
throttle should accept 0 arguments, i.e. no need to force unary function

https://github.com/ramda/types/pull/37/files
https://github.com/ramda/types/pull/101

---
ABOVE IS DONE
---

---
ABOVE IS IN PROGRESS
---
https://github.com/selfrefactor/rambda/pull/737

https://deno.land/x/[email protected]?source - release with `v9.3.0` tag

release X on deno
---
ABOVE SHOULD BE DONE
---
Expand Down
2 changes: 1 addition & 1 deletion source/insertAll.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { curry } from './curry';
import { curry } from './curry.js';

export function insertAllFn(index, listToInsert, list) {
return [...list.slice(0, index), ...listToInsert, ...list.slice(index)];
Expand Down

0 comments on commit d6c0878

Please sign in to comment.