Commit 53d478fb authored by Stefan Penner's avatar Stefan Penner

remove unused code

parent 640708fc
import { Promise } from "./promise";
function objectOrFunction(x) {
return typeof x === "function" || (typeof x === "object" && x !== null);
}
function reject(reason) {
return new Promise(function (resolve, reject) {
reject(reason);
......
import { Promise } from "./promise";
function objectOrFunction(x) {
return typeof x === "function" || (typeof x === "object" && x !== null);
}
function resolve(thenable) {
return new Promise(function(resolve, reject) {
resolve(thenable);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment