UNPKG

@intlayer/config

Version:

Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.

14 lines 306 B
const removeUndefinedValueObject = (obj) => { const newObj = {}; for (const key in obj) { if (obj[key] !== void 0) { newObj[key] = obj[key]; } } Object.freeze(newObj); return newObj; }; export { removeUndefinedValueObject }; //# sourceMappingURL=removeUndefinedValueObject.mjs.map