(value, name)
| 989 | } |
| 990 | |
| 991 | function validateTimes(value, name) { |
| 992 | if (value === Infinity) { |
| 993 | return; |
| 994 | } |
| 995 | |
| 996 | validateInteger(value, name, 1); |
| 997 | } |
| 998 | |
| 999 | function findMethodOnPrototypeChain(instance, methodName) { |
| 1000 | let host = instance; |