├── .codesandbox └── ci.json ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── lib ├── cell.js ├── dimension.js ├── field.js ├── hc.js ├── index.js ├── measure.js └── numeric.js ├── package.json ├── rollup.config.js ├── test ├── dimension.spec.js ├── field.spec.js ├── hc.spec.js ├── index.spec.js ├── measure.spec.js └── numeric.spec.js └── yarn.lock /.codesandbox/ci.json: -------------------------------------------------------------------------------- 1 | { 2 | "sandboxes": ["qf-d72kk"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | dist -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/README.md -------------------------------------------------------------------------------- /lib/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/cell.js -------------------------------------------------------------------------------- /lib/dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/dimension.js -------------------------------------------------------------------------------- /lib/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/field.js -------------------------------------------------------------------------------- /lib/hc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/hc.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/measure.js -------------------------------------------------------------------------------- /lib/numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/lib/numeric.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/dimension.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/test/dimension.spec.js -------------------------------------------------------------------------------- /test/field.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/test/field.spec.js -------------------------------------------------------------------------------- /test/hc.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/test/hc.spec.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/measure.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/test/measure.spec.js -------------------------------------------------------------------------------- /test/numeric.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/test/numeric.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miralemd/qix-faker/HEAD/yarn.lock --------------------------------------------------------------------------------