mirror of
https://github.com/github/codeql.git
synced 2026-07-21 03:08:25 +02:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
function Promise(exec) {
|
|
this.exec = exec;
|
|
}
|
|
|
|
Promise.prototype.then = function(fulfilled, rejected) {
|
|
rejected(null);
|
|
};
|
|
|
|
exports.Promise = Promise;
|