import { complement, isArrayLike } from 'ramda';
/**
* Tests whether or not an object is similar to an array.
*
* @func isNotArrayLike
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link http://ramdajs.com/docs/#isArrayLike|isArrayLike}
* @example
*
* RA.isNotArrayLike([]); //=> false
* RA.isNotArrayLike(true); //=> true
* RA.isNotArrayLike({}); //=> true
* RA.isNotArrayLike({length: 10}); //=> true
* RA.isNotArrayLike({0: 'zero', 9: 'nine', length: 10}); //=> false
*/
const isNotArrayLike = complement(isArrayLike);
export default isNotArrayLike;