├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── test ├── helpers.js └── specs │ ├── entry.js │ ├── notify.js │ ├── observerFunction.js │ ├── subscribe.js │ └── subscription.js └── wraptor.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/package.json -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/specs/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/test/specs/entry.js -------------------------------------------------------------------------------- /test/specs/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/test/specs/notify.js -------------------------------------------------------------------------------- /test/specs/observerFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/test/specs/observerFunction.js -------------------------------------------------------------------------------- /test/specs/subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/test/specs/subscribe.js -------------------------------------------------------------------------------- /test/specs/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/test/specs/subscription.js -------------------------------------------------------------------------------- /wraptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsoft/wraptor/HEAD/wraptor.js --------------------------------------------------------------------------------