├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── example ├── example.js ├── example.sh └── example.svg ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example 2 | .travis.yml 3 | test.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/README.md -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/example/example.js -------------------------------------------------------------------------------- /example/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/example/example.sh -------------------------------------------------------------------------------- /example/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/example/example.svg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/progress-string/HEAD/test.js --------------------------------------------------------------------------------