Breaking down mega-package. Hello auth-db 1.0.0!
This commit is contained in:
13
lib/utils/parseTimeoutToMs.ts
Normal file
13
lib/utils/parseTimeoutToMs.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export const parseTimeoutToMs = (timeout: string) => {
|
||||
const match = timeout.match(/(?<number>\d+)(?<unit>d|h|m)/gi)?.groups || {};
|
||||
const { number, unit } = match;
|
||||
switch (unit) {
|
||||
case 'd':
|
||||
return 1000 * 60 * 60 * 24 * parseInt(number);
|
||||
case 'h':
|
||||
return 1000 * 60 * 60 * parseInt(number);
|
||||
case 'm':
|
||||
default:
|
||||
return 1000 * 60 * parseInt(number) || 1;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user