-
Notifications
You must be signed in to change notification settings - Fork 0
Util.parse()
github-actions[bot] edited this page Sep 30, 2024
·
2 revisions
parses times from strings
type: Function
arguments:
- time
String
util.parse(5); // 5
util.parse("5s"); // 5
util.parse("5ms"); // 5000
util.parse("5m"); // 300
util.parse("5h"); // 18000
util.parse("5d"); // 432000
util.parse("5w"); // 3024000
util.parse("5y"); // 157680000