-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathindex.js
44 lines (42 loc) · 1.28 KB
/
index.js
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// @ts-nocheck
console.log('Attenuator2 imported');
const { create, assign, fromEntries, entries, defineProperties } = Object;
// minimal implementation of LavaMoat-style globals attenuator with write propagation
let globalOverrides = create(null);
export const attenuateGlobals = (params, originalObject, globalThis) => {
const policy = params[0];
console.log('Attenuator2 called', params);
if (policy === 'root') {
assign(globalThis, originalObject);
// This assumes that the root compartment is the first to be attenuated
globalOverrides = globalThis;
return;
}
defineProperties(
globalThis,
fromEntries(
entries(policy)
.map(([key, policyValue]) => {
if (policyValue) {
const spec = {
configurable: false,
enumerable: true,
get() {
console.log('- get', key);
return globalOverrides[key] || originalObject[key];
},
};
if (policyValue === 'write') {
spec.set = value => {
console.log('- set', key);
globalOverrides[key] = value;
};
}
return [key, spec];
}
return null;
})
.filter(a => a),
),
);
};