1.0.0 • Published 2 years ago

green-check v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Green Checkmark v1.0.0

Allows you to use a green checkmark in the console!!

With 'require':

const greenCheckmark = require('../index.js');

console.log('Works from a CommonJs file', greenCheckmark);

With 'import' from a Module:

const greenCheckmark = (await import('../index.js')).default;

console.log('Works from a module', greenCheckmark);