├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .npmignore ├── LICENSE ├── README.md ├── bin └── cmd.js ├── img.png ├── index.js ├── package.json └── test └── basic.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | img.png 2 | test/ 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/img.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/hostile/HEAD/test/basic.js --------------------------------------------------------------------------------