is-implemented.js 181 B

1234567
  1. "use strict";
  2. module.exports = function () {
  3. if (typeof Promise !== "function") return false;
  4. if (typeof Promise.prototype.finally !== "function") return false;
  5. return true;
  6. };