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 : index.js
'use strict';

var test = require('tape');

var getSideChannel = require('../');

test('export', function (t) {
	t.equal(typeof getSideChannel, 'function', 'is a function');
	t.equal(getSideChannel.length, 0, 'takes no arguments');

	var channel = getSideChannel();
	t.ok(channel, 'is truthy');
	t.equal(typeof channel, 'object', 'is an object');

	t.end();
});

test('assert', function (t) {
	var channel = getSideChannel();
	t['throws'](
		function () { channel.assert({}); },
		TypeError,
		'nonexistent value throws'
	);

	var o = {};
	channel.set(o, 'data');
	t.doesNotThrow(function () { channel.assert(o); }, 'existent value noops');

	t.end();
});

test('has', function (t) {
	var channel = getSideChannel();
	var o = [];

	t.equal(channel.has(o), false, 'nonexistent value yields false');

	channel.set(o, 'foo');
	t.equal(channel.has(o), true, 'existent value yields true');

	t.end();
});

test('get', function (t) {
	var channel = getSideChannel();
	var o = {};
	t.equal(channel.get(o), undefined, 'nonexistent value yields undefined');

	var data = {};
	channel.set(o, data);
	t.equal(channel.get(o), data, '"get" yields data set by "set"');

	t.end();
});

test('set', function (t) {
	var channel = getSideChannel();
	var o = function () {};
	t.equal(channel.get(o), undefined, 'value not set');

	channel.set(o, 42);
	t.equal(channel.get(o), 42, 'value was set');

	channel.set(o, Infinity);
	t.equal(channel.get(o), Infinity, 'value was set again');

	var o2 = {};
	channel.set(o2, 17);
	t.equal(channel.get(o), Infinity, 'o is not modified');
	t.equal(channel.get(o2), 17, 'o2 is set');

	channel.set(o, 14);
	t.equal(channel.get(o), 14, 'o is modified');
	t.equal(channel.get(o2), 17, 'o2 is not modified');

	t.end();
});
© 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