UNPKG
nsn-util
Version:
latest (1.0.20210118)
1.0.20210118
1.0.20201209
1.0.20201203
1.0.20201105
1.0.20200928
1.0.20200925
1.0.20200603
1.0.20200602
1.0.20101202
NSN工具辅助组件
www.nsn.com
nsn-util
/
lib
/
NArray.d.ts
7 lines
(6 loc)
•
226 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{ groupBy }
from
'lodash'
;
/** 空数组 */
declare
const
isEmpty
:
(
item
?:
Array
<
any
>
) =>
boolean
;
/** 非空数组 */
declare
const
isNotEmpty
:
(
item
?:
Array
<
any
>
) =>
boolean
;
export
{ isEmpty, isNotEmpty, groupBy, };