diff options
Diffstat (limited to 'data/extensions/https-everywhere@eff.org/background-scripts/wasm.js')
-rw-r--r-- | data/extensions/https-everywhere@eff.org/background-scripts/wasm.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/extensions/https-everywhere@eff.org/background-scripts/wasm.js b/data/extensions/https-everywhere@eff.org/background-scripts/wasm.js index 3385bb7..551b1d3 100644 --- a/data/extensions/https-everywhere@eff.org/background-scripts/wasm.js +++ b/data/extensions/https-everywhere@eff.org/background-scripts/wasm.js @@ -3,7 +3,7 @@ (function(exports) { const util = require('./util'), - { RuleSets } = wasm_bindgen; + { RuleSets, Bloom } = wasm_bindgen; async function initialize() { try { @@ -20,6 +20,7 @@ function is_enabled() { Object.assign(exports, { initialize, RuleSets, + Bloom, is_enabled, }); |