How to use the json-mask function in json-mask

To help you get started, we’ve selected a few json-mask examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ringcentral / ringcentral-js-widgets / packages / ringcentral-integration / modules / ExtensionInfo / index.js View on Github external
function extractData(info) {
  const serviceFeatures = {};
  info.serviceFeatures.forEach((f) => {
    serviceFeatures[f.featureName] = {
      enabled: f.enabled,
    };
    if (!f.enabled) {
      serviceFeatures[f.featureName].reason = f.reason;
    }
  });
  const output = mask(info, DEFAULT_MASK);
  output.serviceFeatures = serviceFeatures;
  return output;
}
github ringcentral / ringcentral-js-widgets / packages / ringcentral-integration / modules / Conference / index.js View on Github external
fetchFunction: async () =>
        mask(await getConferenceInfo(client), DEFAULT_MASK),
      storage,

json-mask

Tiny language and engine for selecting specific parts of a JS object, hiding the rest.

MIT
Latest version published 2 years ago

Package Health Score

53 / 100
Full package analysis

Popular json-mask functions