(base: string, index = 0)
| 109 | * @ignore |
| 110 | */ |
| 111 | export function resetGUID(base: string, index = 0) { |
| 112 | // also ensure it's only 8bit ASCII characters |
| 113 | GUID_base = toHex(base.toUpperCase()); |
| 114 | GUID_index = index; |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * create and return a very simple GUID |