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