Skip to content

Commit

Permalink
fix(pointfree): reexport ensureStack fns
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Mar 31, 2018
1 parent b16c850 commit a0bf781
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/pointfree/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ const $ = SAFE ?
(stack: Stack, n: number) => $n(stack.length, n) :
() => { };

export {
$ as ensureStack,
$n as ensureStackN
}

const $stackFn = (f: StackProc) =>
isArray(f) ? word(f) : f;

Expand Down

0 comments on commit a0bf781

Please sign in to comment.