OLD | NEW |
---|---|
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /** | |
6 * Help for working with MIME types. | |
mem
2013/08/26 13:48:55
perhaps give a brief description of what MIME type
| |
7 * | |
8 * For information on installing and importing this library, see the | |
9 * [mime package on pub.dartlang.org] | |
10 * (http://pub.dartlang.org/packages/mime). | |
11 */ | |
5 library mime; | 12 library mime; |
6 | 13 |
7 import 'dart:async'; | 14 import 'dart:async'; |
8 import 'dart:typed_data'; | 15 import 'dart:typed_data'; |
9 | 16 |
10 part 'src/mime_type.dart'; | 17 part 'src/mime_type.dart'; |
11 part 'src/extension_map.dart'; | 18 part 'src/extension_map.dart'; |
12 part 'src/magic_number.dart'; | 19 part 'src/magic_number.dart'; |
13 part 'src/mime_multipart_transformer.dart'; | 20 part 'src/mime_multipart_transformer.dart'; |
OLD | NEW |