shahoob/functionKit

View on GitHub
src/__tests__/array/clean.test.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { clean } from '../../array/clean';

test('Clean the array', () => {
    expect(clean([
        1, false, 2, 3, '', null , 5
    ])).toStrictEqual([
        1, 2, 3, 5
    ]);
});