UNPKG

rubico

Version:

[a]synchronous functional programming

14 lines (11 loc) 290 B
/** * Rubico v2.8.2 * https://rubico.land/ * * © Richard Yufei Tong, King of Software * Rubico may be freely distributed under the CFOSS license. */ const callProp = (property, ...args) => function callingProp(object) { return object[property](...args) } export default callProp