mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 16:31:52 +02:00
9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
|
/* IMPORT */
|
||
|
import isLight from './is_light.js';
|
||
|
/* MAIN */
|
||
|
const isDark = (color) => {
|
||
|
return !isLight(color);
|
||
|
};
|
||
|
/* EXPORT */
|
||
|
export default isDark;
|