mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-08-31 02:45:13 +00:00
And add a bit of error handling to CharSelectGF & CharSelectSubState Co-Authored-By: Linus Torvalds <torvalds@linux-foundation.org>
24 lines
704 B
Haxe
24 lines
704 B
Haxe
package funkin.util;
|
|
|
|
/**
|
|
* Utilities for performing operations on dates.
|
|
*/
|
|
@:nullSafety
|
|
class DateUtil
|
|
{
|
|
public static function generateTimestamp(?date:Date):String
|
|
{
|
|
if (date == null) date = Date.now();
|
|
|
|
return
|
|
'${date.getFullYear()}-${Std.string(date.getMonth() + 1).lpad('0', 2)}-${Std.string(date.getDate()).lpad('0', 2)}-${Std.string(date.getHours()).lpad('0', 2)}-${Std.string(date.getMinutes()).lpad('0', 2)}-${Std.string(date.getSeconds()).lpad('0', 2)}';
|
|
}
|
|
|
|
public static function generateCleanTimestamp(?date:Date):String
|
|
{
|
|
if (date == null) date = Date.now();
|
|
|
|
return '${DateTools.format(date, '%B %d, %Y')} at ${DateTools.format(date, '%I:%M %p')}';
|
|
}
|
|
}
|