├── .gitignore ├── License.md ├── Makefile ├── Readme.md ├── component.json ├── format-min.js ├── format.js ├── package.json └── test_format.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.tmproj 2 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/License.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/Readme.md -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/component.json -------------------------------------------------------------------------------- /format-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/format-min.js -------------------------------------------------------------------------------- /format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/format.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/package.json -------------------------------------------------------------------------------- /test_format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsonjs/format/HEAD/test_format.js --------------------------------------------------------------------------------