UNPKG

@polgubau/utils

Version:

A collection of utility functions for TypeScript

12 lines 211 B
// src/objects/omit/omit.ts function omit(obj, keys) { const result = { ...obj }; for (const key of keys) { delete result[key]; } return result; } export { omit }; //# sourceMappingURL=omit.mjs.map