'use strict';
const { complement } = require('ramda');
const isArray = require('./isArray');
/**
* Checks if input value is complement of `Array`
*
* @func isNotArray
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.3.0|v0.3.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isArray|isArray}
* @example
*
* RA.isNotArray([]); //=> false
* RA.isNotArray(null); //=> true
* RA.isNotArray({}); //=> true
*/
module.exports = complement(isArray);