diff options
Diffstat (limited to 'src/arguments/duration.ts')
-rw-r--r-- | src/arguments/duration.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/arguments/duration.ts b/src/arguments/duration.ts index 53b200e..ce181e8 100644 --- a/src/arguments/duration.ts +++ b/src/arguments/duration.ts @@ -1,18 +1,5 @@ import { BushArgumentTypeCaster, BushMessage } from '@lib'; export const durationTypeCaster: BushArgumentTypeCaster = (_message: BushMessage, phrase): number => { - // if (!phrase) return null; - // const regexString = Object.entries(BushConstants.TimeUnits) - // .map(([name, { label }]) => String.raw`(?:(?<${name}>-?(?:\d+)?\.?\d+) *${label})?`) - // .join('\\s*'); - // const match = new RegExp(`^${regexString}$`, 'im').exec(phrase); - // if (!match) return null; - // let milliseconds = 0; - // for (const key in match.groups) { - // const value = Number(match.groups[key] || 0); - // milliseconds += value * BushConstants.TimeUnits[key].value; - // } - // return milliseconds; - return client.util.parseDuration(phrase).duration; }; |