├── .gitignore ├── README.md ├── __tests__ └── sheetquery.test.ts ├── dist ├── index.d.ts ├── index.js └── index.js.map ├── jest.config.js ├── package.json ├── prettier.config.js ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/sheetquery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/__tests__/sheetquery.test.ts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlucas/sheetquery/HEAD/tsconfig.json --------------------------------------------------------------------------------