A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* Return a "masked" copy of the given object.
|
|
|
|
*
|
|
|
|
* The returned object includes only the properties present in the mask. The
|
|
|
|
* mask is an object that mirrors the structure of the given object, except
|
|
|
|
* the only values are `true` or a sub-mask. `true` implies the property
|
|
|
|
* should be included, and a sub-mask implies the property should be further
|
|
|
|
* masked according to that sub-mask.
|
|
|
|
*
|
|
|
|
* @param {object} object - The object to mask
|
|
|
|
* @param {Object<object | boolean>} mask - The mask to apply to the object
|
|
|
|
*/
|
|
|
|
export function maskObject(object, mask) {
|
|
|
|
return Object.keys(object).reduce((state, key) => {
|
|
|
|
if (mask[key] === true) {
|
|
|
|
state[key] = object[key];
|
|
|
|
} else if (mask[key]) {
|
|
|
|
state[key] = maskObject(object[key], mask[key]);
|
|
|
|
}
|
|
|
|
return state;
|
|
|
|
}, {});
|
|
|
|
}
|