kopia lustrzana https://github.com/wagtail/wagtail
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 onepull/12641/head
rodzic
f8f99833f2
commit
918ceebc17
|
@ -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]);
|
||||
});
|
||||
});
|
|
@ -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);
|
Ładowanie…
Reference in New Issue