Skip to main content
Module

x/rambda/source/anyType.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {type} from './type'
export function anyType(targetType) { return (...inputs) => { let counter = 0
while (counter < inputs.length) { if (type(inputs[counter]) === targetType) { return true } counter++ }
return false }}