(fns: Function[], ...arg: any[])
| 144 | !Object.is(value, oldValue) |
| 145 | |
| 146 | export const invokeArrayFns = (fns: Function[], ...arg: any[]): void => { |
| 147 | for (let i = 0; i < fns.length; i++) { |
| 148 | fns[i](...arg) |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | export const def = ( |
| 153 | obj: object, |
no outgoing calls
no test coverage detected