/usr/share/webext/https-everywhere/background-scripts/bootstrap.js is in webext-https-everywhere 2018.8.22-1~deb9u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 = {};
|