UNPKG

rubico

Version:

[a]synchronous functional programming

13 lines (10 loc) 291 B
/** * rubico v2.6.2 * https://github.com/a-synchronous/rubico * (c) 2019-2024 Richard Tong * rubico may be freely distributed under the MIT license. */ const callProp = (property, ...args) => function callingProp(object) { return object[property](...args) } export default callProp