-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid loading files that we know are binary ahead of time (#5612)
- Loading branch information
Showing
3 changed files
with
103 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow | ||
*/ | ||
|
||
// This list is compiled after the MDN list of the most common MIME types (see | ||
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/ | ||
// Complete_list_of_MIME_types). | ||
// | ||
// Only MIME types starting with "image/", "video/", "audio/" and "font/" are | ||
// reflected in the list. Adding "application/" is too risky since some text | ||
// file formats (like ".js" and ".json") have an "application/" MIME type. | ||
// | ||
// Feel free to add any extensions that cannot contain any "@providesModule" | ||
// annotation. | ||
|
||
const extensions: Set<string> = new Set([ | ||
// JSONs are never haste modules, except for "package.json", which is handled. | ||
'.json', | ||
|
||
// Image extensions. | ||
'.bmp', | ||
'.gif', | ||
'.ico', | ||
'.jpeg', | ||
'.jpg', | ||
'.png', | ||
'.svg', | ||
'.tiff', | ||
'.tif', | ||
'.webp', | ||
|
||
// Video extensions. | ||
'.avi', | ||
'.mp4', | ||
'.mpeg', | ||
'.mpg', | ||
'.ogv', | ||
'.webm', | ||
'.3gp', | ||
'.3g2', | ||
|
||
// Audio extensions. | ||
'.aac', | ||
'.midi', | ||
'.mid', | ||
'.mp3', | ||
'.oga', | ||
'.wav', | ||
'.3gp', | ||
'.3g2', | ||
|
||
// Font extensions. | ||
'.eot', | ||
'.otf', | ||
'.ttf', | ||
'.woff', | ||
'.woff2', | ||
]); | ||
|
||
export default extensions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters