http_parser 4.0.2 copy "http_parser: ^4.0.2" to clipboard
http_parser: ^4.0.2 copied to clipboard

A platform-independent package for parsing and serializing HTTP formats.

example/example.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
}
208
likes
140
pub points
100%
popularity

Publisher

verified publisherdart.cn

A platform-independent package for parsing and serializing HTTP formats.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

collection, source_span, string_scanner, typed_data

More

Packages that depend on http_parser