Skip to content
On this page

Home > @taiyuuki/utils > is_rgb_color

is_rgb_color() function

该函数检查给定颜色是否为 RGB 颜色。

Signature:

typescript
declare function is_rgb_color(color: any): color is RgbColor;
declare function is_rgb_color(color: any): color is RgbColor;

Parameters

ParameterTypeDescription
colorany它可以是任何数据类型。

Returns:

color is RgbColor

返回一个布尔值。

Released under the MIT License.