├── .gitignore ├── CHANGELOG.md ├── LICENCE ├── README.md ├── index.d.ts ├── package.json └── src ├── .babelrc.es.js ├── .babelrc.js ├── __tests__ ├── .babelrc └── test.js ├── browserslist └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/package.json -------------------------------------------------------------------------------- /src/.babelrc.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/src/.babelrc.es.js -------------------------------------------------------------------------------- /src/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/src/.babelrc.js -------------------------------------------------------------------------------- /src/__tests__/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/src/__tests__/.babelrc -------------------------------------------------------------------------------- /src/__tests__/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/src/__tests__/test.js -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- 1 | > 0.5% 2 | last 2 versions 3 | Firefox ESR 4 | not dead 5 | IE 11 6 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/autobind-decorator/HEAD/src/index.js --------------------------------------------------------------------------------