diff --git a/files/NEXT_VERSION_CHECKLIST.md b/files/NEXT_VERSION_CHECKLIST.md index 4a8766de..30dda554 100644 --- a/files/NEXT_VERSION_CHECKLIST.md +++ b/files/NEXT_VERSION_CHECKLIST.md @@ -1,8 +1,3 @@ -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 --- @@ -10,6 +5,11 @@ ABOVE IS DONE --- ABOVE IS IN PROGRESS --- +https://github.com/selfrefactor/rambda/pull/737 + +https://deno.land/x/rambda@9.3.0?source - release with `v9.3.0` tag + +release X on deno --- ABOVE SHOULD BE DONE --- diff --git a/source/insertAll.js b/source/insertAll.js index 5ba522a5..3dfaebc4 100644 --- a/source/insertAll.js +++ b/source/insertAll.js @@ -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)];