Create a JavaScript util `castArray`

- Allows easy conversion of any value/s supplied into an array or keep as an array if it's already one
pull/12641/head
LB Johnston 2023-10-23 08:21:46 +10:00 zatwierdzone przez LB (Ben Johnston)
rodzic f8f99833f2
commit 918ceebc17
2 zmienionych plików z 33 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,28 @@
import { castArray } from './castArray';
describe('castArray', () => {
it('should return an empty array by default', () => {
expect(castArray()).toEqual([]);
});
it('should the provided argument wrapped as an array if it is not one', () => {
expect(castArray(null)).toEqual([null]);
expect(castArray(undefined)).toEqual([undefined]);
expect(castArray(3)).toEqual([3]);
});
it('should return the provided argument as an array if it is one', () => {
expect(castArray([])).toEqual([]);
expect(castArray([1, 2, 3])).toEqual([1, 2, 3]);
expect(castArray([1, 2, ['nested', 'true']])).toEqual([
1,
2,
['nested', 'true'],
]);
});
it('should return a set of arguments as an array', () => {
expect(castArray(1, 2, 3)).toEqual([1, 2, 3]);
expect(castArray(null, undefined)).toEqual([null, undefined]);
});
});

Wyświetl plik

@ -0,0 +1,5 @@
/**
* Converts the provided args or single argument to an array.
* Even if not originally supplied as one.
*/
export const castArray = (...args) => args.flat(1);