@gypsy-js/npm-template
Version:
The gypys NPM project template.
21 lines (16 loc) • 407 B
JavaScript
/**
* @file npm-template library CommonJS entry point.
* @author qivmvip AT gmail DOT com
* @date 2022-02-17
*/
const hello = `hello npm-template AT ${new Date().toISOString()}`;
/**
* @file npm-template bin entry point.
* @author qivmvip AT gmail DOT com
* @date 2022-02-17
*/
const main = () => {
console.log(`\n[bin.main] ${hello}\n`);
};
export { main };
//# sourceMappingURL=index.js.map