UNPKG

imgcolex

Version:

Extract the dominant color and a color palette from an image using RGBA channels.

12 lines (9 loc) 270 B
let imgcolex; if (typeof window === 'undefined') { // Node imgcolex = (await import('./utils/node-color-extractor.js')).default; } else { // Browser imgcolex = (await import('./utils/browser-color-extractor.js')).default; } export default imgcolex;