(snowflake: Snowflake)
| 131 | * @category Parts |
| 132 | */ |
| 133 | export const toParts = (snowflake: Snowflake): Snowflake.Parts => ({ |
| 134 | timestamp: timestamp(snowflake), |
| 135 | machineId: machineId(snowflake), |
| 136 | sequence: sequence(snowflake) |
| 137 | }) |
| 138 | |
| 139 | /** |
| 140 | * @since 1.0.0 |
no test coverage detected
searching dependent graphs…