Skip to content

Commit 2b91ef2

Browse files
committed
chore: add missing version metadata for concat
[skip ci]
1 parent afb857d commit 2b91ef2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/array/concat.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: concat
33
description: Flattens and filters nullish values from arguments
4+
since: 12.5.0
45
---
56

67
### Usage

src/array/concat.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export type Concat<T extends readonly any[]> = T[number] extends infer TElement
2020
* const result = _.concat(1, [2, [3]], null)
2121
* // => [1, 2, [3]] // Note: only flattens one level
2222
* ```
23+
* @version 12.5.0
2324
*/
2425
export function concat<T extends readonly [any, any, ...any[]]>(
2526
...values: T

0 commit comments

Comments
 (0)