├── .gitignore ├── README.md ├── benchmark ├── data.json └── index.js ├── dist └── imtbl.js ├── package.json ├── src └── index.js └── test └── index.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/benchmark/data.json -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /dist/imtbl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/dist/imtbl.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman01la/imtbl/HEAD/test/index.test.js --------------------------------------------------------------------------------