File tree Expand file tree Collapse file tree 3 files changed +31
-14
lines changed Expand file tree Collapse file tree 3 files changed +31
-14
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,21 @@ export {
55
55
} from ' @typescript-package/are' ;
56
56
```
57
57
58
+ ## Validate
59
+
60
+ - [x] BigInt
61
+ - [x] Boolean
62
+ - [x] Date
63
+ - [x] Defined
64
+ - [x] False
65
+ - [x] Null
66
+ - [x] Number
67
+ - [x] RegExp
68
+ - [x] String
69
+ - [x] Symbol
70
+ - [x] True
71
+ - [x] Undefined
72
+
58
73
## GIT
59
74
60
75
### Commit
Original file line number Diff line number Diff line change 2
2
"name" : " @typescript-package/are" ,
3
3
"version" : " 1.0.0" ,
4
4
"author" :
" wwwdev.io <[email protected] >" ,
5
- "description" : " Type `are` checkers for typescript ." ,
5
+ "description" : " Type-safe `are` checkers for validating value types in TypeScript ." ,
6
6
"license" : " MIT" ,
7
7
"publishConfig" : {
8
8
"access" : " public" ,
38
38
"url" : " https://checkout.revolut.com/pay/048b10a3-0e10-42c8-a917-e3e9cb4c8e29"
39
39
}
40
40
],
41
- "sideEffects" : false ,
41
+ "sideEffects" : false
42
42
}
Original file line number Diff line number Diff line change 1
1
// Function.
2
- import { areBigInt } from '../lib/are-bigint.func' ;
3
- import { areBoolean } from '../lib/are-boolean.func' ;
4
- import { areDate } from '../lib/are-date.func' ;
5
- import { areDefined } from '../lib/are-defined.func' ;
6
- import { areFalse } from '../lib/are-false.func' ;
7
- import { areNull } from '../lib/are-null.func' ;
8
- import { areNumber } from '../lib/are-number.func' ;
9
- import { areRegExp } from '../lib/are-regexp.func' ;
10
- import { areString } from '../lib/are-string.func' ;
11
- import { areSymbol } from '../lib/are-symbol.func' ;
12
- import { areTrue } from '../lib/are-true.func' ;
13
- import { areUndefined } from '../lib/are-undefined.func' ;
2
+ import {
3
+ areBigInt ,
4
+ areBoolean ,
5
+ areDate ,
6
+ areDefined ,
7
+ areFalse ,
8
+ areNull ,
9
+ areNumber ,
10
+ areRegExp ,
11
+ areString ,
12
+ areSymbol ,
13
+ areTrue ,
14
+ areUndefined ,
15
+ } from '../lib' ;
14
16
/**
15
17
* Represents the shape of an object that contains `are` prefixed functions.
16
18
*/
You can’t perform that action at this time.
0 commit comments