(value, attributeName)
| 19479 | return "" + value; |
| 19480 | } |
| 19481 | function checkAttributeStringCoercion(value, attributeName) { |
| 19482 | if (willCoercionThrow(value)) |
| 19483 | return ( |
| 19484 | console.error( |
| 19485 | "The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before using it here.", |
| 19486 | attributeName, |
| 19487 | typeName(value) |
| 19488 | ), |
| 19489 | testStringCoercion(value) |
| 19490 | ); |
| 19491 | } |
| 19492 | function checkCSSPropertyStringCoercion(value, propName) { |
| 19493 | if (willCoercionThrow(value)) |
| 19494 | return ( |
no test coverage detected
searching dependent graphs…