summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/node/fixtures/WebConsoleUtils.js
blob: 1b5f134be3491fd49f183c3be13e740c9472d95a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const L10n = require("resource://devtools/client/webconsole/test/node/fixtures/L10n.js");

const Utils = {
  L10n,
  supportsString(s) {
    return s;
  },
};

module.exports = {
  Utils,
};