astro-ghostcms/.pnpm-store/v3/files/63/1e1ef2152ad1357dd22f118dcbe...

16 lines
216 B
Plaintext

export const AsyncResource = {
bind(fn, _type, thisArg) {
return fn.bind(thisArg);
},
};
export class AsyncLocalStorage {
getStore() {
return undefined;
}
run(_store, callback) {
return callback();
}
}