├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── polyfill.native.ts └── polyfill.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-match-media-polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-match-media-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-match-media-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import "./polyfill" -------------------------------------------------------------------------------- /src/polyfill.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-match-media-polyfill/HEAD/src/polyfill.native.ts -------------------------------------------------------------------------------- /src/polyfill.ts: -------------------------------------------------------------------------------- 1 | // noop -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-match-media-polyfill/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-match-media-polyfill/HEAD/yarn.lock --------------------------------------------------------------------------------