lanye74.github.io/shared/shared.js
2020-09-07 20:44:26 -04:00

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));
}