fix require() actually not working after build in the frontend

This commit is contained in:
LouisLam
2021-07-17 00:51:28 +08:00
parent b3bff8d735
commit dfa9b3a0ca
4 changed files with 17 additions and 8 deletions

View File

@@ -5,6 +5,19 @@ import timezone from 'dayjs/plugin/timezone'
dayjs.extend(utc)
dayjs.extend(timezone)
export function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
export function ucfirst(str) {
if (! str) {
return str;
}
const firstLetter = str.substr(0, 1);
return firstLetter.toUpperCase() + str.substr(1);
}
function getTimezoneOffset(timeZone) {
const now = new Date();