UNPKG

simple-color-functions

Version:
5 lines (4 loc) 181 B
export const isShortNotation = (color: string): boolean => { const colorArray = color.split('').slice(1); return colorArray.every((item, i, array) => array[0] === item); };