ノード モジュールisomorphic-fetch
(バージョン : ^2.2.1) を React Native アプリに追加した後、エラーが発生しCan't find variable: self
ました。
ここにスクリーンショットを添付しました。
node_modules > isomorphic-fetch > にあるファイルからエラーがスローされますfetch-npm-browserify.js
。
以下はそのファイルのコードです。
// the whatwg-fetch polyfill installs the fetch() function
// on the global object (window or self)
//
// Return that as the export for use in Webpack, Browserify etc.
require('whatwg-fetch');
module.exports = self.fetch.bind(self);