├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── test.html ├── text.js └── text.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-text/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-text/HEAD/package.json -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-text/HEAD/test.html -------------------------------------------------------------------------------- /text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-text/HEAD/text.js -------------------------------------------------------------------------------- /text.txt: -------------------------------------------------------------------------------- 1 | This is 2 | Some text 3 | 4 | "yay" --------------------------------------------------------------------------------