blowfish/node_modules/khroma/dist/methods/alpha.js
2023-01-29 22:30:24 +00:00

8 lines
157 B
JavaScript

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