Skip to main content
Module

x/rambda/source/indexOf.js

Faster and smaller alternative to Ramda
Latest
File
import { _indexOf } from './equals.js'
export function indexOf(valueToFind, list){ if (arguments.length === 1){ return _list => _indexOf(valueToFind, _list) }
return _indexOf(valueToFind, list)}