node.js-_microservices
node.js-_microservices copied to clipboard
updates in validators/index.js
- Missing import of mongoose, it was used but never imported.
const mongoose = require('mongoose');
- importing moment,
import moment from 'moment';
and changing the getWeekofYear(), getMonthofYear()
via moment().week() and moment().month() respectively.
This makes code more optimized.