Skip to content

Commit

Permalink
feat: expose makeClassify and defaultIsNil
Browse files Browse the repository at this point in the history
  • Loading branch information
tstelzer committed Jul 2, 2024
1 parent 30321dd commit fdf50e8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions workspace/tons-of-tests-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @creative-introvert/tons-of-tests-cli

## 0.9.3

### Patch Changes

- Updated dependencies [555df78]
- @creative-introvert/tons-of-tests@0.8.0

## 0.9.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspace/tons-of-tests-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@creative-introvert/tons-of-tests-cli",
"version": "0.9.2",
"version": "0.9.3",
"type": "module",
"license": "MIT",
"sideEffects": [],
Expand Down
6 changes: 6 additions & 0 deletions workspace/tons-of-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @creative-introvert/tons-of-tests

## 0.8.0

### Minor Changes

- 555df78: Feat: Expose makeClassify and defaultIsNil

## 0.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspace/tons-of-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@creative-introvert/tons-of-tests",
"version": "0.7.2",
"version": "0.8.0",
"type": "module",
"license": "MIT",
"sideEffects": [],
Expand Down
2 changes: 2 additions & 0 deletions workspace/tons-of-tests/src/Classify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export type Label = 'TP' | 'TN' | 'FP' | 'FN';

export const values = internal.values;
export const defaultIsEqual = internal.defaultIsEqual;
export const defaultIsNil = internal.defaultIsNil;
export const makeClassify = internal.makeClassify;

export type Classify<O, T> = (output: O, expected: T) => Label;

Expand Down

0 comments on commit fdf50e8

Please sign in to comment.