├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── favicon.ico ├── icon_120x120.png ├── index.html ├── main.min.js ├── manifest.webmanifest └── sw.min.js ├── img ├── favicon.ico └── icon_120x120.png ├── package.json └── src ├── index.html ├── main.js ├── manifest.webmanifest └── sw.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tomayac] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/README.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/icon_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/docs/icon_120x120.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/docs/main.min.js -------------------------------------------------------------------------------- /docs/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/docs/manifest.webmanifest -------------------------------------------------------------------------------- /docs/sw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/docs/sw.min.js -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/icon_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/img/icon_120x120.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/src/main.js -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/pwa-feature-detector/HEAD/src/sw.js --------------------------------------------------------------------------------