You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
367 B
18 lines
367 B
4 years ago
|
"use strict";
|
||
|
|
||
|
module.exports = function (t, a) {
|
||
|
var promise;
|
||
|
a(t(), false);
|
||
|
a(t(null), false);
|
||
|
a(t("promise"), false);
|
||
|
a(t({}), false);
|
||
|
a(t(function () {}), false);
|
||
|
a(t({ then: {} }), false);
|
||
|
a(t({ then: function () {} }), true);
|
||
|
promise = function () {};
|
||
|
promise.then = {};
|
||
|
a(t(promise), false);
|
||
|
promise.then = function () {};
|
||
|
a(t(promise), true);
|
||
|
};
|