mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
16 lines
486 B
Haxe
16 lines
486 B
Haxe
package funkin.util;
|
|
|
|
/**
|
|
* Utilities for performing operations on dates.
|
|
*/
|
|
class DateUtil
|
|
{
|
|
public static function generateTimestamp(?date:Date = null):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)}';
|
|
}
|
|
}
|