7 lines
No EOL
197 B
JavaScript
7 lines
No EOL
197 B
JavaScript
function getCSSVar(property) {
|
|
return getComputedStyle(document.documentElement).getPropertyValue(`--${property}`);
|
|
}
|
|
|
|
async function sleep(ms) {
|
|
return new Promise(res => setTimeout(res, ms));
|
|
} |