38 lines
942 B
JavaScript
38 lines
942 B
JavaScript
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
// convert a string into title case
|
|
const toTitleCase = (str) =>
|
|
str
|
|
.toLowerCase()
|
|
.split(' ')
|
|
.map((word) => word.replace(word[0], word[0].toUpperCase()))
|
|
.join(' ');
|
|
|
|
const rWhiteSpace = /\s+/;
|
|
const rAllWhiteSpace = /\s+/g;
|
|
|
|
// collapse all whitespaces into a single space (like "white-space: normal;" would do), and trim
|
|
const collapseWhitespace = (str) => {
|
|
if (str && rWhiteSpace.test(str)) {
|
|
return str.replace(rAllWhiteSpace, ' ').trim();
|
|
}
|
|
return str;
|
|
};
|
|
|
|
const convertDateToISO8601 = (date) => {
|
|
if (!date) {
|
|
return date;
|
|
}
|
|
if (typeof date !== 'object') {
|
|
// some routes may call `.toUTCString()` before passing the date to ctx...
|
|
date = parseDate(date);
|
|
}
|
|
return date.toISOString();
|
|
};
|
|
|
|
module.exports = {
|
|
toTitleCase,
|
|
collapseWhitespace,
|
|
convertDateToISO8601,
|
|
};
|