UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

10 lines (9 loc) 243 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isRgb; function isRgb(o) { var color = o; return typeof color.r === 'number' && typeof color.g === 'number' && typeof color.b === 'number'; }