mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
The promise package needs a weak dependency on this package (on the server) because meteor-promise saves a reference to Fiber.yield, so we need to have wrapped Fiber.yield with noContext before that happens.
16 lines
185 B
JavaScript
16 lines
185 B
JavaScript
const {
|
|
Slot,
|
|
bind,
|
|
noContext,
|
|
setTimeout,
|
|
asyncFromGen,
|
|
} = require("@wry/context");
|
|
|
|
Object.assign(exports, {
|
|
Slot,
|
|
bind,
|
|
noContext,
|
|
setTimeout,
|
|
asyncFromGen,
|
|
});
|