UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

24 lines (23 loc) 562 B
import notFlipInclude from './notFlipInclude'; /** * Returns `false` if any of the items from `list` flipIncludes `item`. * * Deprecated due to breaking change in Ramda. Use `R_.notFlipInclude`. * * @func * @category List * * @param {Array} list * @param {any} item * @return {Boolean} Returns `false` if `list` flipIncludes `item`. * @deprecated * * @example * * R_.notInclude(['e', 'f'], 'e') // false * R_.notInclude(['a', 'f'], 'a') // true * * @sig [a] -> b -> Boolean */ var notInclude = notFlipInclude; export default notInclude;