UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

14 lines (12 loc) 238 B
const omit = (keys) => (obj) => { const result = {}; for (const key in obj) { if (keys.includes(key)) { continue; } result[key] = obj[key]; } return result; }; export { omit }; //# sourceMappingURL=omit.mjs.map