/home/techb158/balavpn.abdallabala.com/node_modules/es-iterator-helpers/test
NameSizeModeActions
helpers/-0777rm
aos.js78770666editdlrm
implementation.js3880666editdlrm
index.js3910666editdlrm
Iterator.concat.js187650666editdlrm
Iterator.from.js112100666editdlrm
Iterator.js46180666editdlrm
Iterator.prototype.constructor.js29450666editdlrm
Iterator.prototype.drop.js144280666editdlrm
Iterator.prototype.every.js99800666editdlrm
Iterator.prototype.filter.js172850666editdlrm
Iterator.prototype.find.js99950666editdlrm
Iterator.prototype.flatMap.js116600666editdlrm
Iterator.prototype.forEach.js78570666editdlrm
Iterator.prototype.includes.js57350666editdlrm
Iterator.prototype.js35290666editdlrm
Iterator.prototype.map.js163960666editdlrm
Iterator.prototype.reduce.js109150666editdlrm
Iterator.prototype.some.js99420666editdlrm
Iterator.prototype.take.js124630666editdlrm
Iterator.prototype.toArray.js77590666editdlrm
Iterator.zip.js169770666editdlrm
Iterator.zipKeyed.js187710666editdlrm
shimmed.js24900666editdlrm
tests.js9320666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/es-iterator-helpers/test/tests.js (932B)
'use strict'; var data = { anchor: { arg: 'bar"baz"', expected: 'foo' }, big: 'foo', blink: 'foo', bold: 'foo', fixed: 'foo', fontcolor: { arg: 'blue"red"green', expected: 'foo' }, fontsize: { arg: '10"large"small', expected: 'foo' }, italics: 'foo', link: { arg: 'url"http://"', expected: 'foo' }, small: 'foo', strike: 'foo', sub: 'foo', sup: 'foo' }; module.exports = function (method, name, t) { var result = data[name] || {}; var expected = typeof result === 'string' ? result : result.expected; var actual = typeof result === 'string' ? method('foo') : method('foo', result.arg); t.equal(actual, expected, name + ': got expected result'); };