pose / web /node_modules /p-limit /async-hooks-stub.js
amitesh11's picture
Upload 3019 files
369fac9 verified
raw
history blame
216 Bytes
export const AsyncResource = {
bind(fn, _type, thisArg) {
return fn.bind(thisArg);
},
};
export class AsyncLocalStorage {
getStore() {
return undefined;
}
run(_store, callback) {
return callback();
}
}