mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Note that this may be a breaking change for server-side code that uses Promise.denodeify, Promise.nodeify, Function.prototype.async, or Function.prototype.asyncApply, since those APIs have been removed for the sake of simplicity.
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
require("meteor-promise").makeCompatible(
|
|
exports.Promise = require("./common.js").Promise,
|
|
// Allow every Promise callback to run in a Fiber drawn from a pool of
|
|
// reusable Fibers.
|
|
require("fibers")
|
|
);
|