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