astro-ghostcms/.pnpm-store/v3/files/c2/d40131d1c9d7fbefc998a9c4834...

19 lines
391 B
Plaintext

const mediaDirective = (load, options) => {
const cb = async () => {
const hydrate = await load();
await hydrate();
};
if (options.value) {
const mql = matchMedia(options.value);
if (mql.matches) {
cb();
} else {
mql.addEventListener("change", cb, { once: true });
}
}
};
var media_default = mediaDirective;
export {
media_default as default
};