Direct port of tinycolor’s boundAlpha function to maintain consistency with how tinycolor works.
Parameters
$n
mixedrequired- Number of unknown type.
Source
function _wp_tinycolor_bound_alpha( $n ) {
_deprecated_function( __FUNCTION__, '6.3.0' );
if ( is_numeric( $n ) ) {
$n = (float) $n;
if ( $n >= 0 && $n <= 1 ) {
return $n;
}
}
return 1;
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.