blob: ca467c1f94d6523a5f49952f4f37320457db2498 [file] [log] [blame] [edit]
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)