├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── esm └── index.mjs ├── index.js ├── package.json ├── src ├── Error.js ├── JsonProvider.js ├── Types │ └── IOptions.ts └── YamlProvider.js ├── test ├── json.test.js └── yaml.test.js └── types └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/babel.config.js -------------------------------------------------------------------------------- /esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/esm/index.mjs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/package.json -------------------------------------------------------------------------------- /src/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/src/Error.js -------------------------------------------------------------------------------- /src/JsonProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/src/JsonProvider.js -------------------------------------------------------------------------------- /src/Types/IOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/src/Types/IOptions.ts -------------------------------------------------------------------------------- /src/YamlProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/src/YamlProvider.js -------------------------------------------------------------------------------- /test/json.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/test/json.test.js -------------------------------------------------------------------------------- /test/yaml.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/test/yaml.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egecanakincioglu/for-db-nodejs-database-module/HEAD/types/index.d.ts --------------------------------------------------------------------------------