'use strict';
const { complement, isEmpty } = require('ramda');
/**
* Returns true if the given value is not its type's empty value; `false` otherwise.
*
* @func isNotEmpty
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.4.0|v0.4.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link http://ramdajs.com/docs/#isEmpty|isEmpty}
* @example
*
* RA.isNotEmpty([1, 2, 3]); //=> true
* RA.isNotEmpty([]); //=> false
* RA.isNotEmpty(''); //=> false
* RA.isNotEmpty(null); //=> true
* RA.isNotEmpty(undefined): //=> true
* RA.isNotEmpty({}); //=> false
* RA.isNotEmpty({length: 0}); //=> true
*/
module.exports = complement(isEmpty);