UNPKG

orthomoji

Version:

Create text art with emojis!

11 lines (9 loc) 209 B
/** * Simple logger that appends '[ORTHOMOJI]: ` to a string * * @param {string} message - Message to log */ const logger = message => { console.log(`[ORTHOMOJI]: ${message}`); }; export { logger };