(snowflake: Snowflake)
| 40 | } |
| 41 | |
| 42 | export function parse(snowflake: Snowflake) { |
| 43 | return { |
| 44 | timestamp: getTimestamp(snowflake), |
| 45 | workerId: getWorkerId(snowflake), |
| 46 | processId: getProcessId(snowflake), |
| 47 | increment: getIncrement(snowflake), |
| 48 | }; |
| 49 | } |
no test coverage detected