node-taglib-sharp / Exports / UuidWrapper
Wrapper around the UUID package to make it easier to handle UUIDs.
• new UuidWrapper(source?
)
Constructs an instance using either the supplied UUID or generating a new, random one.
Name | Type | Description |
---|---|---|
source? |
string | ByteVector |
If provided, it is used as the bytes of the instance. If a falsy value is provided, a new v4 UUID will be generated. |
▸ equals(b
): boolean
Determines whether this instance and another instance represent the same UUID.
Name | Type | Description |
---|---|---|
b |
UuidWrapper |
The other UUID to compare this one to. |
boolean
▸ toBytes(): ByteVector
Gets the bytes that make up the UUID.
▸ toString(): string
Gets a string representation of the UUID.
string