You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
788 B
23 lines
788 B
'use strict';
|
|
module.exports = (() => {
|
|
const months = ['january','february','march','april','may','june','july',
|
|
'august','september','october','november','december'];
|
|
const shortMonths = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
|
|
'sep', 'oct', 'nov', 'dec'];
|
|
|
|
function convertMonthName(expression, items){
|
|
for(let i = 0; i < items.length; i++){
|
|
expression = expression.replace(new RegExp(items[i], 'gi'), parseInt(i, 10) + 1);
|
|
}
|
|
return expression;
|
|
}
|
|
|
|
function interprete(monthExpression){
|
|
monthExpression = convertMonthName(monthExpression, months);
|
|
monthExpression = convertMonthName(monthExpression, shortMonths);
|
|
return monthExpression;
|
|
}
|
|
|
|
return interprete;
|
|
})();
|