Skip to main content
Module

x/rambda/source/propIs.js

Faster and smaller alternative to Ramda
Latest
File
import { curry } from './curry.js'import { is } from './is.js'
function propIsFn( targetPrototype, property, obj){ return is(targetPrototype, obj[ property ])}
export const propIs = curry(propIsFn)