├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── appveyor.yml ├── fixtures ├── bar.js └── foo.js ├── index.ts ├── package.json ├── test.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !**.js 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/appveyor.yml -------------------------------------------------------------------------------- /fixtures/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/fixtures/bar.js -------------------------------------------------------------------------------- /fixtures/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/fixtures/foo.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/package.json -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/get-caller-file/HEAD/yarn.lock --------------------------------------------------------------------------------