├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── mux.js └── mux.min.js ├── gulpfile.js ├── index.js ├── lib ├── array-hook.js ├── info.js ├── keypath.js ├── message.js ├── mux.js └── util.js ├── package.json └── test ├── index.dist.js ├── index.js ├── spec-base.js ├── spec-global-api.js ├── spec-instance-array.js ├── spec-instance-method.js ├── spec-options-deep.js └── spec-options.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | coverage.html -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/README.md -------------------------------------------------------------------------------- /dist/mux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/dist/mux.js -------------------------------------------------------------------------------- /dist/mux.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/dist/mux.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/mux') 4 | -------------------------------------------------------------------------------- /lib/array-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/lib/array-hook.js -------------------------------------------------------------------------------- /lib/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/lib/info.js -------------------------------------------------------------------------------- /lib/keypath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/lib/keypath.js -------------------------------------------------------------------------------- /lib/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/lib/message.js -------------------------------------------------------------------------------- /lib/mux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/lib/mux.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/package.json -------------------------------------------------------------------------------- /test/index.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/index.dist.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/index.js -------------------------------------------------------------------------------- /test/spec-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/spec-base.js -------------------------------------------------------------------------------- /test/spec-global-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/spec-global-api.js -------------------------------------------------------------------------------- /test/spec-instance-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/spec-instance-array.js -------------------------------------------------------------------------------- /test/spec-instance-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/spec-instance-method.js -------------------------------------------------------------------------------- /test/spec-options-deep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/spec-options-deep.js -------------------------------------------------------------------------------- /test/spec-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/muxjs/HEAD/test/spec-options.js --------------------------------------------------------------------------------