├── .gitignore ├── .npmignore ├── LICENSE ├── Readme.md ├── example └── index.html ├── package.json └── src └── mySpeech.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermawan22/mySpeech/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermawan22/mySpeech/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermawan22/mySpeech/HEAD/Readme.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermawan22/mySpeech/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermawan22/mySpeech/HEAD/package.json -------------------------------------------------------------------------------- /src/mySpeech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermawan22/mySpeech/HEAD/src/mySpeech.js --------------------------------------------------------------------------------