Skip to main content
Module

x/rambda/propIs.js

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