UNPKG
heibao-utils
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.3
0.0.2
0.0.1
javasript develop utils
github.com/ljcheibao/node-utils
ljcheibao/node-utils
heibao-utils
/
test
/
test.ts
8 lines
(7 loc)
•
245 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ expect }
from
'chai'
;
import
Utils
from
"../lib/core.js"
;
describe
(
'dateFormat function'
,
() =>
{
it
(
'should return Date string'
,
() =>
{
expect
(
Utils
.
dateFormat
(
"yyyy-MM-dd"
,
new
Date
())).
to
.
equal
(
'2018-01-30'
); }); });