summaryrefslogtreecommitdiffstats
path: root/dom/quota/test/modules/content/worker/Utils.js
blob: 0f8888fc000e00ece0f6bbcc529c06cb8dd90e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

let UtilsChild;

async function ensureUtilsChild() {
  if (UtilsChild) {
    return;
  }

  const { UtilsChild: importedUtilsChild } = await import(
    "/tests/dom/quota/test/modules/worker/UtilsChild.mjs"
  );

  UtilsChild = importedUtilsChild;
}

const Utils = {
  async getCachedOriginUsage() {
    await ensureUtilsChild();

    const result = await UtilsChild.getCachedOriginUsage();
    return result;
  },
};