├── .babelrc ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── __tests__ │ └── autobind-test.js └── autobind.js └── test └── mocha.opts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | _* 2 | !__tests__ 3 | /lib 4 | /node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _* 2 | !__tests__ 3 | /lib 4 | /node_modules 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/autobind-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/src/__tests__/autobind-test.js -------------------------------------------------------------------------------- /src/autobind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodefox/class-autobind/HEAD/src/autobind.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers js:babel-core/register 2 | --------------------------------------------------------------------------------