UNPKG

@appbuckets/react-ui-core

Version:

Core utilities built for AppBuckets React UI Framework

12 lines (9 loc) 208 B
import * as React from 'react'; /** * Pass the children props to check if they are nil. * @param children */ function isNil(children) { return React.Children.count(children) === 0; } export { isNil };