mirror of
https://github.com/servo/servo.git
synced 2025-07-05 22:43:40 +01:00
10 lines
No EOL
281 B
JavaScript
10 lines
No EOL
281 B
JavaScript
/**
|
|
* AUTO-GENERATED - DO NOT EDIT. Source: https://github.com/gpuweb/cts
|
|
**/
|
|
|
|
const url = new URL(window.location.toString());
|
|
export function optionEnabled(opt) {
|
|
const val = url.searchParams.get(opt);
|
|
return val !== null && val !== '0';
|
|
}
|
|
//# sourceMappingURL=options.js.map
|