mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-08 03:18:36 +03:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
// @see https://github.com/keyz/identity-obj-proxy
|
|
const identityObject = new Proxy(
|
|
{},
|
|
{
|
|
get(_, key) {
|
|
return key === "__esModule" ? false : key;
|
|
},
|
|
}
|
|
);
|
|
|
|
module.exports = identityObject;
|