├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── README.md ├── assets ├── fig.py ├── pluck-string-node.graffle └── pluck-string-node.png ├── index.html ├── index.js ├── package.json ├── test ├── .eslintrc ├── mocha.opts └── node.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | build/*.js -diff 2 | assets/* binary 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | npm-debug.log 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/README.md -------------------------------------------------------------------------------- /assets/fig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/assets/fig.py -------------------------------------------------------------------------------- /assets/pluck-string-node.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/assets/pluck-string-node.graffle -------------------------------------------------------------------------------- /assets/pluck-string-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/assets/pluck-string-node.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --require web-audio-test-api 3 | -------------------------------------------------------------------------------- /test/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/test/node.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohayonao/pluck-string-node/HEAD/yarn.lock --------------------------------------------------------------------------------