A custom typescript functional programming libraries, including some common functions written in fp paradigm.
npm i jianhan-fp-lib
import { hasPropertyAndNotEmpty } from "jianhan-fp-lib";
console.log(hasPropertyAndNotEmpty('name', {name: "test"}))
Output should be true
npm run test