├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .nycrc ├── .travis.yml ├── README.md ├── index.js ├── package.json ├── src ├── Reader.js ├── Tag.js ├── Writer.js ├── compile.js ├── decode.js ├── encode.js ├── index.js └── utils.js └── test ├── .eslintrc.json ├── Reader.js ├── Tag.js ├── Writer.js ├── compatibility.js ├── compile.js ├── decode.js ├── encode.js ├── index.js ├── mocha.opts └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | .nyc_output 3 | npm-debug.log 4 | node_modules/ 5 | coverage/ 6 | lib/ 7 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib"); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/package.json -------------------------------------------------------------------------------- /src/Reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/Reader.js -------------------------------------------------------------------------------- /src/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/Tag.js -------------------------------------------------------------------------------- /src/Writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/Writer.js -------------------------------------------------------------------------------- /src/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/compile.js -------------------------------------------------------------------------------- /src/decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/decode.js -------------------------------------------------------------------------------- /src/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/encode.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/Reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/Reader.js -------------------------------------------------------------------------------- /test/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/Tag.js -------------------------------------------------------------------------------- /test/Writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/Writer.js -------------------------------------------------------------------------------- /test/compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/compatibility.js -------------------------------------------------------------------------------- /test/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/compile.js -------------------------------------------------------------------------------- /test/decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/decode.js -------------------------------------------------------------------------------- /test/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/encode.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --recursive 3 | -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/osc-msg/HEAD/test/utils.js --------------------------------------------------------------------------------