rdesign/frontend/node_modules/khroma/dist/methods/is_transparent.js

9 lines
163 B
JavaScript

/* IMPORT */
import alpha from './alpha.js';
/* MAIN */
const isTransparent = (color) => {
return !alpha(color);
};
/* EXPORT */
export default isTransparent;