Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
function run_test() {
let ac = new AbortController();
Assert.ok(ac instanceof AbortController);
Assert.ok(ac.signal instanceof AbortSignal);
}