Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
function run_test() {
let uuid = CommonUtils.generateUUID();
Assert.equal(uuid.length, 36);
Assert.equal(uuid[8], "-");
run_next_test();
}