package funkin.util;

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)}';
  }
}