- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
26 lines
609 B
TypeScript
26 lines
609 B
TypeScript
/**
|
|
Create an array of unique values, in order, from the input arrays.
|
|
|
|
@example
|
|
```
|
|
import arrayUnion = require('array-union');
|
|
|
|
arrayUnion([1, 1, 2, 3], [2, 3]);
|
|
//=> [1, 2, 3]
|
|
|
|
arrayUnion(['foo', 'foo', 'bar']);
|
|
//=> ['foo', 'bar']
|
|
|
|
arrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);
|
|
//=> ['🐱', '🦄', '🐻', '🌈']
|
|
|
|
arrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);
|
|
//=> ['🐱', '🦄', '🐻', '🐶', '🌈']
|
|
```
|
|
*/
|
|
declare function arrayUnion<ArgumentsType extends readonly unknown[]>(
|
|
...arguments: readonly ArgumentsType[]
|
|
): ArgumentsType;
|
|
|
|
export = arrayUnion;
|