deno.land / x / rambda@v9.1.1 / source / hasIn.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
import { propFn } from "./prop";
export function hasIn(searchProperty, obj) { if (arguments.length === 1){ return (_obj) => hasIn(searchProperty, _obj); }
return propFn(searchProperty, obj) !== undefined}
rambda

Version Info

Tagged at
2 months ago