UNPKG
whatlib
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A library for strange code, but it's working
Minecodes/whatlib
whatlib
/
src
/
main.ts
19 lines
(17 loc)
•
252 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
{
isbool
,
isfunc
,
isnum
,
isobj
,
isstr
,
issymb
}
from
"./is"
const
is
=
{
isbool:
isbool
,
isfunc:
isfunc
,
isnum:
isnum
,
isobj:
isobj
,
isstr:
isstr
,
issymb:
issymb
}
export
{
is
}