(value)
| 256 | } |
| 257 | } |
| 258 | function checkKeyStringCoercion(value) { |
| 259 | { |
| 260 | if (willCoercionThrow(value)) { |
| 261 | error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value)); |
| 262 | |
| 263 | return testStringCoercion(value); // throw (to help callers find troubleshooting comments) |
| 264 | } |
| 265 | } |
| 266 | } |
| 267 | function checkPropStringCoercion(value, propName) { |
| 268 | { |
| 269 | if (willCoercionThrow(value)) { |
no test coverage detected
searching dependent graphs…