Test/node_modules/khroma/dist/methods/is_transparent.js
2026-04-09 22:54:00 +07:00

8 lines
163 B
JavaScript

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