summaryrefslogtreecommitdiff
path: root/data/extensions/https-everywhere@eff.org/background-scripts/bootstrap.js
blob: 65d7a7a24ebf88960cb3ee94a681c7f69e0a0585 (plain)
1
2
3
4
5
6
7
8
9
"use strict";

function require(module) {
  if (module.startsWith('./') && require.scopes.hasOwnProperty(module.slice(2))) {
    return require.scopes[module.slice(2)];
  }
  throw new Error('module: ' + module + ' not found.');
}
require.scopes = {};