├── .gitignore ├── LICENSE ├── README.md ├── SplitLargeFiles.plugin.js ├── images ├── chunks.png └── visualReassembly.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | src/SplitLargeFiles/bundled.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riolubruh/SplitLargeFiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riolubruh/SplitLargeFiles/HEAD/README.md -------------------------------------------------------------------------------- /SplitLargeFiles.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riolubruh/SplitLargeFiles/HEAD/SplitLargeFiles.plugin.js -------------------------------------------------------------------------------- /images/chunks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riolubruh/SplitLargeFiles/HEAD/images/chunks.png -------------------------------------------------------------------------------- /images/visualReassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riolubruh/SplitLargeFiles/HEAD/images/visualReassembly.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riolubruh/SplitLargeFiles/HEAD/package.json --------------------------------------------------------------------------------