├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── samples ├── perfTest.js └── sample.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | samples/issue* -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdenser/node-struct/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdenser/node-struct/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdenser/node-struct/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdenser/node-struct/HEAD/package.json -------------------------------------------------------------------------------- /samples/perfTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdenser/node-struct/HEAD/samples/perfTest.js -------------------------------------------------------------------------------- /samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdenser/node-struct/HEAD/samples/sample.js --------------------------------------------------------------------------------