Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/Documentation/crypto/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  make_URLSearchParams.js   Sprache: unbekannt

 
/*
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
*/


async function testSteps() {
  const name = "URLSearchParams";
  const options = { foo: "bar", baz: "bar" };
  const params = new URLSearchParams(options);
  const value = { urlSearchParams: params };
  const key = 42;

  info("Opening database");

  const request = indexedDB.open(name);
  await expectingUpgrade(request);

  const database = request.result;

  const objectStore = database.createObjectStore(name, {});

  info("Adding value");

  objectStore.add(value, key);

  await requestSucceeded(request);

  info("Closing database");

  database.close();
}

Messung V0.5
C=96 H=85 G=90

[ Dauer der Verarbeitung: 0.3 Sekunden  (vorverarbeitet)  ]