(options: { msecs?: number } = {})
| 155 | * @category entry |
| 156 | */ |
| 157 | export const makeEntryId = (options: { msecs?: number } = {}): EntryId => { |
| 158 | return Uuid.v7(options, new Uint8Array(16)) as EntryId |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * @since 1.0.0 |
no outgoing calls
no test coverage detected