Uname: Linux webm016.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 7.4.33 [ PHP INFO ] PHP os: Linux
Server Ip: 54.36.31.145
Your Ip: 216.73.216.182
User: homesquasz (91404) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : ensure.js
"use strict";

var assert         = require("chai").assert
  , coerceString   = require("../../string/coerce")
  , isArray        = require("../../array/is")
  , ensureIterable = require("../../iterable/ensure");

describe("iterable/ensure", function () {
	it("Should return input value", function () {
		var value = [];
		assert.equal(ensureIterable(value), value);
	});
	it("Should allow strings with allowString option", function () {
		var value = "foo";
		assert.equal(ensureIterable(value, { allowString: true }), value);
	});
	it("Should crash on invalid value", function () {
		try {
			ensureIterable("foo");
			throw new Error("Unexpected");
		} catch (error) {
			assert.equal(error.name, "TypeError");
			assert(error.message.includes("is not expected iterable value"));
		}
	});
	describe("Should support 'coerceItem' option", function () {
		it("Should resolve coerced array", function () {
			var coercedValue = ensureIterable(new Set(["foo", 12]), { coerceItem: coerceString });
			assert(isArray(coercedValue));
			assert.deepEqual(coercedValue, ["foo", "12"]);
		});
		it("Should crash if some value is non coercible", function () {
			try {
				ensureIterable(["foo", {}], { coerceItem: coerceString });
				throw new Error("Unexpected");
			} catch (error) {
				assert.equal(error.name, "TypeError");
				assert(error.message.includes("is not expected iterable value"));
			}
		});
	});
});
© 2026 GrazzMean
Page non trouvée – APK Comptoir Hammami
Jannah Theme License is not validated, Go to the theme options page to validate the license, You need a single license for each domain name.

404 :(

Oups ! Cette page est introuvable.

Il semble que nous ne puissions pas trouver ce que vous cherchez. Peut-être qu'une recherche pourrait vous aider.

Bouton retour en haut de la page