├── .gitignore ├── .travis.yml ├── README.md ├── dist ├── index.js └── index.min.js ├── gulpfile.js ├── package.json ├── src ├── async-wrap.js └── wrap.js └── test ├── testSettings.js └── wrap.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .idea 3 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/dist/index.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/package.json -------------------------------------------------------------------------------- /src/async-wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/src/async-wrap.js -------------------------------------------------------------------------------- /src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/src/wrap.js -------------------------------------------------------------------------------- /test/testSettings.js: -------------------------------------------------------------------------------- 1 | require("babel/register")({ 2 | optional: ["es7.decorators"] 3 | }); 4 | -------------------------------------------------------------------------------- /test/wrap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmartin81/decorator-wrap/HEAD/test/wrap.test.js --------------------------------------------------------------------------------