From e79b945f75ae7fa0fe3858082f6b4006df19ae50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Sat, 9 Jun 2018 18:01:25 -0700 Subject: [PATCH] Add MIT License Header Summary: When a third party library is vendored, both the original copyright header as well as React Native's header are required. Reviewed By: fkgozali Differential Revision: D8284116 fbshipit-source-id: 1748eb011c843a87e9ed421597571b66334edfd2 --- Libraries/vendor/core/whatwg-fetch.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Libraries/vendor/core/whatwg-fetch.js b/Libraries/vendor/core/whatwg-fetch.js index 1b5603201..cdfa4fc69 100644 --- a/Libraries/vendor/core/whatwg-fetch.js +++ b/Libraries/vendor/core/whatwg-fetch.js @@ -1,3 +1,12 @@ +/** +* Copyright (c) 2015-present, Facebook, Inc. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +* +* @format +*/ + // Fork of https://github.com/github/fetch/blob/master/fetch.js that does not // use reponseType: 'blob' by default. RN already has specific native implementations // for different response types so there is no need to add the extra blob overhead.