Skip to content

Commit 1ebfad8

Browse files
Merge pull request #12 from AgapeToolkit/typescript-strict
implement strict typescript
2 parents 6636a34 + 7baa8ae commit 1ebfad8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/functions/quantify.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { quantify } from './quantify';
33

44
describe('quantify', () => {
55

6-
let value: number|string;
6+
let value: number | string | undefined;
77
let label: string;
88

99
beforeEach( () => {
@@ -53,4 +53,4 @@ describe('quantify', () => {
5353
value = "432.00";
5454
expect(quantify(value, label)).toBe("432.00 cats")
5555
})
56-
})
56+
})

0 commit comments

Comments
 (0)