(value, propName)
| 19490 | ); |
| 19491 | } |
| 19492 | function checkCSSPropertyStringCoercion(value, propName) { |
| 19493 | if (willCoercionThrow(value)) |
| 19494 | return ( |
| 19495 | console.error( |
| 19496 | "The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before using it here.", |
| 19497 | propName, |
| 19498 | typeName(value) |
| 19499 | ), |
| 19500 | testStringCoercion(value) |
| 19501 | ); |
| 19502 | } |
| 19503 | function checkFormFieldValueStringCoercion(value) { |
| 19504 | if (willCoercionThrow(value)) |
| 19505 | return ( |
no test coverage detected
searching dependent graphs…