UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

7 lines (6 loc) 243 B
// `_propertyOf` : an utility's function // -------------------------------------- // Generates a function for a given object that returns a given property. export default function (obj) { return obj == null ? () => {} : (key) => obj[key]; }