Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
135 B
4
Indexable

onload = () => {
  const c = setTimeout(() => {
    document.body.classList.remove("not-loaded");
    clearTimeout(c);
  }, 1000);
};