Skip to content

Commit

Permalink
Exposed @fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhaufe committed Oct 25, 2020
1 parent 650ec47 commit 0cf85ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@final-hill/class-tools",
"version": "1.0.1",
"version": "1.1.0",
"description": "Class Tools provides a number of utility functions and decorators to ease of features commonly found in functional languages",
"main": "dist/index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
*/

import curry from './curry';
import fix from './fix';
import lazy from './lazy';
import memo from './memo';
import {partial, _} from './partial';

export {curry, lazy, memo, partial, _};
export {curry, fix, lazy, memo, partial, _};

0 comments on commit 0cf85ab

Please sign in to comment.