/** * @type {ProxyHandler} */ module.exports = { get(target, property, receiver) { return Reflect.get(target, property, receiver); } }