%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
'use strict'; const common = require('../common.js'); const bench = common.createBenchmark(main, { withBase: ['true', 'false'], type: ['wpt'], // Too many combinations - just use WPT by default e: [1], prop: ['href', 'origin', 'protocol', 'username', 'password', 'host', 'hostname', 'port', 'pathname', 'search', 'searchParams', 'hash'] }); function setAndGet(data, prop) { const len = data.length; let result = data[0][prop]; bench.start(); for (let i = 0; i < len; ++i) { result = data[i][prop]; data[i][prop] = result; } bench.end(len); return result; } function get(data, prop) { const len = data.length; let result = data[0][prop]; bench.start(); for (let i = 0; i < len; ++i) { result = data[i][prop]; // get } bench.end(len); return result; } function main({ e, type, prop, withBase }) { withBase = withBase === 'true'; const data = common.bakeUrlData(type, e, withBase, true); switch (prop) { case 'protocol': case 'username': case 'password': case 'host': case 'hostname': case 'port': case 'pathname': case 'search': case 'hash': case 'href': setAndGet(data, prop); break; case 'origin': case 'searchParams': get(data, prop); break; default: throw new Error('Unknown prop'); } }