17 lines
589 B
Dart
17 lines
589 B
Dart
|
|
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
||
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
||
|
|
// BSD-style license that can be found in the LICENSE file.
|
||
|
|
|
||
|
|
import 'package:http_parser/http_parser.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
final date = DateTime.utc(2014, 9, 9, 9, 9, 9);
|
||
|
|
print(date); // 2014-09-09 09:09:09.000Z
|
||
|
|
|
||
|
|
final httpDateFormatted = formatHttpDate(date);
|
||
|
|
print(httpDateFormatted); // Tue, 09 Sep 2014 09:09:09 GMT
|
||
|
|
|
||
|
|
final nowParsed = parseHttpDate(httpDateFormatted);
|
||
|
|
print(nowParsed); // 2014-09-09 09:09:09.000Z
|
||
|
|
}
|