403Webshell
Server IP : 159.203.156.69  /  Your IP : 216.73.216.37
Web Server : nginx/1.24.0
System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/tanviranik.com/node_modules/es-iterator-helpers/aos/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/tanviranik.com/node_modules/es-iterator-helpers/aos/IteratorCloseAll.js
'use strict';

var $TypeError = require('es-errors/type');

var CompletionRecord = require('es-abstract/2025/CompletionRecord');
var IteratorClose = require('es-abstract/2025/IteratorClose');
var ThrowCompletion = require('es-abstract/2025/ThrowCompletion');

var IsArray = require('es-abstract/helpers/IsArray');
var every = require('es-abstract/helpers/every');

var isIteratorRecord = require('es-abstract/helpers/records/iterator-record');

// https://tc39.es/proposal-joint-iteration/#sec-closeall

module.exports = function IteratorCloseAll(iters, completion) {
	if (!IsArray(iters) || !every(iters, isIteratorRecord)) {
		throw new $TypeError('Assertion failed: `iters` must be a List of IteratorRecords');
	}
	if (!(completion instanceof CompletionRecord)) {
		throw new $TypeError('Assertion failed: `completion` must be a Completion Record');
	}

	for (var i = iters.length - 1; i >= 0; i -= 1) { // step 1
		try {
			IteratorClose(iters[i], completion); // step 1.a
		} catch (e) {
			// eslint-disable-next-line no-param-reassign
			completion = ThrowCompletion(e); // step 1.a
		}
	}

	return completion['?'](); // step 2
};

Youez - 2016 - github.com/yon3zu
LinuXploit