Return the current date in CLF format
npm install clf-dateReturn the current date in CLF format: %d/%b/%Y:%H:%M:%S %z.
``bash
npm install -g clf-date # or yarn global add clf-date
Node.js library
`bash
npm install clf-date # or yarn add clf-date
``js
const clfDate = require('clf-date');// Without parameter it will use the current time.
console.log(clfDate());
// With a Date in parameter.
const date = new Date();
date.setFullYear(2042);
console.log(clfDate(date);
``Don't hesitate to create a pull request to improve the project.
If you find a bug or want a new feature, dont'hesitate to create an issue.