Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
promise.allsettled
/
test
/
Filename :
implementation.js
back
Copy
'use strict'; var test = require('tape'); var callBind = require('call-bind'); var allSettled = require('../implementation'); var runTests = require('./tests'); var bound = callBind(allSettled); // eslint-disable-next-line no-shadow var rebindable = function allSettled(iterable) { // eslint-disable-next-line no-invalid-this return bound(typeof this === 'undefined' ? Promise : this, iterable); }; test('as a function', function (t) { t.test('bad Promise/this value', function (st) { // eslint-disable-next-line no-useless-call st['throws'](function () { allSettled.call(undefined, []); }, TypeError, 'undefined is not an object'); // eslint-disable-next-line no-useless-call st['throws'](function () { allSettled.call(null, []); }, TypeError, 'null is not an object'); st.end(); }); runTests(rebindable, t); t.end(); });