(object, property, fn)
| 25 | * @returns {Result} The resolved option value. |
| 26 | */ |
| 27 | const n = (object, property, fn) => { |
| 28 | object[property] = fn(object[property]); |
| 29 | return object[property]; |
| 30 | }; |
| 31 | |
| 32 | module.exports = { d, n }; |
no outgoing calls
no test coverage detected