UNPKG

@kernel-js/support

Version:

Support package for Kernel Framework

13 lines (11 loc) 250 B
import isEmpty from "./isEmpty"; /** * Check if value is not empty using isEmpty function * * @param {*} value * @returns {boolean} */ var isNotEmpty = function isNotEmpty(value) { return !isEmpty(value); }; export default isNotEmpty;