UNPKG
@kopexa/react-utils
Version:
canary (0.0.0-canary-20251002140945)
latest (14.0.0)
14.0.0
13.0.3
13.0.2
13.0.1
13.0.0
3.0.0
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.1
1.1.0
1.0.0
0.0.0
0.0.0-canary-20251002140945
0.0.0-canary-20250930080312
0.0.0-canary-20250929165405
0.0.0-canary-20250929143758
0.0.0-canary-20250929113854
0.0.0-canary-20250928093607
0.0.0-canary-20250928092958
0.0.0-canary-20250926082636
0.0.0-canary-20250926082443
0.0.0-canary-20250814153136
0.0.0-canary-20250814152707
0.0.0-canary-20250814152232
0.0.0-canary-20250814151636
0.0.0-canary-20250814151327
0.0.0-canary-20250814150725
0.0.0-canary-20250814075426
0.0.0-canary-20250814072717
0.0.0-canary-20250814071929
0.0.0-canary-20250813191146
0.0.0-canary-20250726165052
0.0.0-canary-20250726164541
0.0.0-canary-20250726111713
0.0.0-canary-20250725221410
0.0.0-canary-20250725115018
0.0.0-canary-20250725101309
0.0.0-canary-20250725100822
0.0.0-canary-20250724093238
0.0.0-canary-20250723090358
0.0.0-canary-20250722213907
0.0.0-canary-20250722165224
0.0.0-canary-20250722154622
0.0.0-canary-20250722141502
0.0.0-canary-20250721165623
0.0.0-canary-20250719201723
0.0.0-canary-20250718214437
0.0.0-canary-20250718190925
0.0.0-canary-20250718185650
0.0.0-canary-20250718183330
A set of utilities for react on client side
kopexa.com
kopexa-grc/sight
@kopexa/react-utils
/
dist
/
chunk-KGECMVHS.mjs
14 lines
(11 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use client"
;
// src/children.ts
import
{
Children
, isValidElement }
from
"react"
;
function
getValidChildren
(
children
) {
return
Children
.
toArray
(children).
filter
(
(
child
) =>
isValidElement
(child) ); }
export
{ getValidChildren };