Files
infocom-systems-design/node_modules/khroma/dist/methods/is_transparent.js
2025-10-03 22:27:28 +03:00

9 lines
163 B
JavaScript

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