Partie-2/node_modules/es5-ext/test/object/ensure-thenable.js
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

10 lines
226 B
JavaScript

"use strict";
module.exports = function (t, a) {
// Just sanity checks as proper tests are at isThenable
var thenable = { then: function () {} };
a.throws(function () { t({}); }, TypeError);
a(t(thenable), thenable);
};