UNPKG

idasen-controller

Version:

Package wrapping simple controls of Idasen IKEA desk.

19 lines (14 loc) 273 B
export class UUIDWrapper { constructor (uuid) { this._uuid = uuid; } get uuid () { return this._uuid; } get uuidNoDashes () { return this.uuid.replace(/-/g, ''); } get uuidNoDashesLowCase () { return this.uuidNoDashes.toLowerCase(); } }