mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-08 19:48:57 +00:00
14 lines
357 B
Markdown
14 lines
357 B
Markdown
# `kumo.uuid.parse(UUID)`
|
|
|
|
{{since('2024.09.02-c5476b89')}}
|
|
|
|
Parses a UUID from a string and into a UUID object.
|
|
|
|
```lua
|
|
local u = kumo.uuid.parse '{69994630-3e27-11ef-91fc-cc28aa0a5c5a}'
|
|
assert(u.hyphenated == '69994630-3e27-11ef-91fc-cc28aa0a5c5a')
|
|
```
|
|
|
|
See [The UUID Object](index.md#the-uuid-object) for more information about the
|
|
returned UUID object.
|