UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

8 lines (7 loc) 244 B
import { describe, expect, it } from 'vitest'; import { omit } from './omit'; describe('omit', () => { it('should omit keys from object', () => { expect(omit(['a', 'b'])({ a: 'a', b: 'b', c: 'c' })).toEqual({ c: 'c' }); }); });