├── .gitignore ├── .npmignore ├── README.md ├── lib └── npo.src.js ├── package.json └── test_adapter.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npo.js 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .gitignore 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/native-promise-only/HEAD/README.md -------------------------------------------------------------------------------- /lib/npo.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/native-promise-only/HEAD/lib/npo.src.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/native-promise-only/HEAD/package.json -------------------------------------------------------------------------------- /test_adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/native-promise-only/HEAD/test_adapter.js --------------------------------------------------------------------------------