mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 07:01:53 +02:00
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
/* IMPORT */
|
|
import Color from '../color/index.js';
|
|
/* MAIN */
|
|
const toKeyword = (color) => {
|
|
return Color.format.keyword.stringify(Color.parse(color));
|
|
};
|
|
/* EXPORT */
|
|
export default toKeyword;
|