UNPKG
@royli/hygen
Version:
latest (6.2.0)
6.2.0
5.0.4
The scalable code generator that saves you time.
github.com/jondot/hygen
jondot/hygen
@royli/hygen
/
src
/
ops
/
result.ts
12 lines
(11 loc)
•
218 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
default
(
type
, subject, start =
new
Date
()) =>
(
status, payload =
null
, end =
new
Date
(),
) =>
({
type
, subject, status,
timing
: end.
getTime
() - start.
getTime
(), ...(payload && { payload }), })