├── Backend ├── class 01 │ ├── app.js │ ├── package.json │ └── utils.js ├── class 02 │ ├── # BACKEND TOPICS.txt │ ├── app.js │ ├── package.json │ ├── server.js │ └── utils.js ├── class 03 │ ├── # BACKEND TOPICS.txt │ ├── app.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ └── mime.ps1 │ │ ├── .package-lock.json │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── call-bind-apply-helpers │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actualApply.d.ts │ │ │ ├── actualApply.js │ │ │ ├── applyBind.d.ts │ │ │ ├── applyBind.js │ │ │ ├── functionApply.d.ts │ │ │ ├── functionApply.js │ │ │ ├── functionCall.d.ts │ │ │ ├── functionCall.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── reflectApply.d.ts │ │ │ ├── reflectApply.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── call-bound │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── browser │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dunder-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── get.d.ts │ │ │ ├── get.js │ │ │ ├── package.json │ │ │ ├── set.d.ts │ │ │ ├── set.js │ │ │ ├── test │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── set.js │ │ │ └── tsconfig.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── es-define-property │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── es-errors │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eval.d.ts │ │ │ ├── eval.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── range.d.ts │ │ │ ├── range.js │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ ├── syntax.d.ts │ │ │ ├── syntax.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ ├── tsconfig.json │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── uri.d.ts │ │ │ └── uri.js │ │ ├── es-object-atoms │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RequireObjectCoercible.d.ts │ │ │ ├── RequireObjectCoercible.js │ │ │ ├── ToObject.d.ts │ │ │ ├── ToObject.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── isObject.d.ts │ │ │ ├── isObject.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── function-bind │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── SECURITY.md │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── implementation.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ ├── get-intrinsic │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── GetIntrinsic.js │ │ ├── get-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Object.getPrototypeOf.d.ts │ │ │ ├── Object.getPrototypeOf.js │ │ │ ├── README.md │ │ │ ├── Reflect.getPrototypeOf.d.ts │ │ │ ├── Reflect.getPrototypeOf.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── gopd │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gOPD.d.ts │ │ │ ├── gOPD.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── has-symbols │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── shams.d.ts │ │ │ ├── shams.js │ │ │ ├── test │ │ │ │ ├── index.js │ │ │ │ ├── shams │ │ │ │ │ ├── core-js.js │ │ │ │ │ └── get-own-property-symbols.js │ │ │ │ └── tests.js │ │ │ └── tsconfig.json │ │ ├── hasown │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── math-intrinsics │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abs.d.ts │ │ │ ├── abs.js │ │ │ ├── constants │ │ │ │ ├── maxArrayLength.d.ts │ │ │ │ ├── maxArrayLength.js │ │ │ │ ├── maxSafeInteger.d.ts │ │ │ │ ├── maxSafeInteger.js │ │ │ │ ├── maxValue.d.ts │ │ │ │ └── maxValue.js │ │ │ ├── floor.d.ts │ │ │ ├── floor.js │ │ │ ├── isFinite.d.ts │ │ │ ├── isFinite.js │ │ │ ├── isInteger.d.ts │ │ │ ├── isInteger.js │ │ │ ├── isNaN.d.ts │ │ │ ├── isNaN.js │ │ │ ├── isNegativeZero.d.ts │ │ │ ├── isNegativeZero.js │ │ │ ├── max.d.ts │ │ │ ├── max.js │ │ │ ├── min.d.ts │ │ │ ├── min.js │ │ │ ├── mod.d.ts │ │ │ ├── mod.js │ │ │ ├── package.json │ │ │ ├── pow.d.ts │ │ │ ├── pow.js │ │ │ ├── round.d.ts │ │ │ ├── round.js │ │ │ ├── sign.d.ts │ │ │ ├── sign.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── object-inspect │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ ├── all.js │ │ │ │ ├── circular.js │ │ │ │ ├── fn.js │ │ │ │ └── inspect.js │ │ │ ├── index.js │ │ │ ├── package-support.json │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ ├── test-core-js.js │ │ │ ├── test │ │ │ │ ├── bigint.js │ │ │ │ ├── browser │ │ │ │ │ └── dom.js │ │ │ │ ├── circular.js │ │ │ │ ├── deep.js │ │ │ │ ├── element.js │ │ │ │ ├── err.js │ │ │ │ ├── fakes.js │ │ │ │ ├── fn.js │ │ │ │ ├── global.js │ │ │ │ ├── has.js │ │ │ │ ├── holes.js │ │ │ │ ├── indent-option.js │ │ │ │ ├── inspect.js │ │ │ │ ├── lowbyte.js │ │ │ │ ├── number.js │ │ │ │ ├── quoteStyle.js │ │ │ │ ├── toStringTag.js │ │ │ │ ├── undef.js │ │ │ │ └── values.js │ │ │ └── util.inspect.js │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── empty-keys-cases.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── encodeurl │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── side-channel-list │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── list.d.ts │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-map │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-weakmap │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── package-lock.json │ ├── package.json │ ├── productData.js │ └── server.js ├── class 04 │ ├── app.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ └── mime.ps1 │ │ ├── .package-lock.json │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── call-bind-apply-helpers │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actualApply.d.ts │ │ │ ├── actualApply.js │ │ │ ├── applyBind.d.ts │ │ │ ├── applyBind.js │ │ │ ├── functionApply.d.ts │ │ │ ├── functionApply.js │ │ │ ├── functionCall.d.ts │ │ │ ├── functionCall.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── reflectApply.d.ts │ │ │ ├── reflectApply.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── call-bound │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── browser │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dunder-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── get.d.ts │ │ │ ├── get.js │ │ │ ├── package.json │ │ │ ├── set.d.ts │ │ │ ├── set.js │ │ │ ├── test │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── set.js │ │ │ └── tsconfig.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── es-define-property │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── es-errors │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eval.d.ts │ │ │ ├── eval.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── range.d.ts │ │ │ ├── range.js │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ ├── syntax.d.ts │ │ │ ├── syntax.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ ├── tsconfig.json │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── uri.d.ts │ │ │ └── uri.js │ │ ├── es-object-atoms │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RequireObjectCoercible.d.ts │ │ │ ├── RequireObjectCoercible.js │ │ │ ├── ToObject.d.ts │ │ │ ├── ToObject.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── isObject.d.ts │ │ │ ├── isObject.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── function-bind │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── SECURITY.md │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── implementation.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ ├── get-intrinsic │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── GetIntrinsic.js │ │ ├── get-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Object.getPrototypeOf.d.ts │ │ │ ├── Object.getPrototypeOf.js │ │ │ ├── README.md │ │ │ ├── Reflect.getPrototypeOf.d.ts │ │ │ ├── Reflect.getPrototypeOf.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── gopd │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gOPD.d.ts │ │ │ ├── gOPD.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── has-symbols │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── shams.d.ts │ │ │ ├── shams.js │ │ │ ├── test │ │ │ │ ├── index.js │ │ │ │ ├── shams │ │ │ │ │ ├── core-js.js │ │ │ │ │ └── get-own-property-symbols.js │ │ │ │ └── tests.js │ │ │ └── tsconfig.json │ │ ├── hasown │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── math-intrinsics │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abs.d.ts │ │ │ ├── abs.js │ │ │ ├── constants │ │ │ │ ├── maxArrayLength.d.ts │ │ │ │ ├── maxArrayLength.js │ │ │ │ ├── maxSafeInteger.d.ts │ │ │ │ ├── maxSafeInteger.js │ │ │ │ ├── maxValue.d.ts │ │ │ │ └── maxValue.js │ │ │ ├── floor.d.ts │ │ │ ├── floor.js │ │ │ ├── isFinite.d.ts │ │ │ ├── isFinite.js │ │ │ ├── isInteger.d.ts │ │ │ ├── isInteger.js │ │ │ ├── isNaN.d.ts │ │ │ ├── isNaN.js │ │ │ ├── isNegativeZero.d.ts │ │ │ ├── isNegativeZero.js │ │ │ ├── max.d.ts │ │ │ ├── max.js │ │ │ ├── min.d.ts │ │ │ ├── min.js │ │ │ ├── mod.d.ts │ │ │ ├── mod.js │ │ │ ├── package.json │ │ │ ├── pow.d.ts │ │ │ ├── pow.js │ │ │ ├── round.d.ts │ │ │ ├── round.js │ │ │ ├── sign.d.ts │ │ │ ├── sign.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── object-inspect │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ ├── all.js │ │ │ │ ├── circular.js │ │ │ │ ├── fn.js │ │ │ │ └── inspect.js │ │ │ ├── index.js │ │ │ ├── package-support.json │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ ├── test-core-js.js │ │ │ ├── test │ │ │ │ ├── bigint.js │ │ │ │ ├── browser │ │ │ │ │ └── dom.js │ │ │ │ ├── circular.js │ │ │ │ ├── deep.js │ │ │ │ ├── element.js │ │ │ │ ├── err.js │ │ │ │ ├── fakes.js │ │ │ │ ├── fn.js │ │ │ │ ├── global.js │ │ │ │ ├── has.js │ │ │ │ ├── holes.js │ │ │ │ ├── indent-option.js │ │ │ │ ├── inspect.js │ │ │ │ ├── lowbyte.js │ │ │ │ ├── number.js │ │ │ │ ├── quoteStyle.js │ │ │ │ ├── toStringTag.js │ │ │ │ ├── undef.js │ │ │ │ └── values.js │ │ │ └── util.inspect.js │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── empty-keys-cases.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── encodeurl │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── side-channel-list │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── list.d.ts │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-map │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-weakmap │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── package-lock.json │ └── package.json ├── class 05 │ ├── .gitignore │ ├── app.js │ ├── package-lock.json │ ├── package.json │ └── users.txt ├── class 06 │ ├── # BACKEND TOPICS.txt │ ├── .gitignore │ ├── app.js │ ├── client │ │ ├── app.js │ │ └── index.html │ ├── package-lock.json │ ├── package.json │ └── users.txt ├── class 07 │ ├── app.js │ ├── models │ │ └── userSchema.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ └── mime.ps1 │ │ ├── .package-lock.json │ │ ├── @mongodb-js │ │ │ └── saslprep │ │ │ │ ├── LICENSE │ │ │ │ ├── dist │ │ │ │ ├── .esm-wrapper.mjs │ │ │ │ ├── browser.d.ts │ │ │ │ ├── browser.d.ts.map │ │ │ │ ├── browser.js │ │ │ │ ├── browser.js.map │ │ │ │ ├── code-points-data-browser.d.ts │ │ │ │ ├── code-points-data-browser.d.ts.map │ │ │ │ ├── code-points-data-browser.js │ │ │ │ ├── code-points-data-browser.js.map │ │ │ │ ├── code-points-data.d.ts │ │ │ │ ├── code-points-data.d.ts.map │ │ │ │ ├── code-points-data.js │ │ │ │ ├── code-points-data.js.map │ │ │ │ ├── code-points-src.d.ts │ │ │ │ ├── code-points-src.d.ts.map │ │ │ │ ├── code-points-src.js │ │ │ │ ├── code-points-src.js.map │ │ │ │ ├── generate-code-points.d.ts │ │ │ │ ├── generate-code-points.d.ts.map │ │ │ │ ├── generate-code-points.js │ │ │ │ ├── generate-code-points.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── memory-code-points.d.ts │ │ │ │ ├── memory-code-points.d.ts.map │ │ │ │ ├── memory-code-points.js │ │ │ │ ├── memory-code-points.js.map │ │ │ │ ├── node.d.ts │ │ │ │ ├── node.d.ts.map │ │ │ │ ├── node.js │ │ │ │ ├── node.js.map │ │ │ │ ├── util.d.ts │ │ │ │ ├── util.d.ts.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── @types │ │ │ ├── webidl-conversions │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ └── whatwg-url │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── lib │ │ │ │ ├── URL-impl.d.ts │ │ │ │ ├── URL.d.ts │ │ │ │ ├── URLSearchParams-impl.d.ts │ │ │ │ └── URLSearchParams.d.ts │ │ │ │ ├── package.json │ │ │ │ └── webidl2js-wrapper.d.ts │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── bson │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bson.d.ts │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── bson.bundle.js │ │ │ │ ├── bson.bundle.js.map │ │ │ │ ├── bson.cjs │ │ │ │ ├── bson.cjs.map │ │ │ │ ├── bson.mjs │ │ │ │ ├── bson.mjs.map │ │ │ │ ├── bson.rn.cjs │ │ │ │ └── bson.rn.cjs.map │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── binary.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bson_value.ts │ │ │ │ ├── code.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── db_ref.ts │ │ │ │ ├── decimal128.ts │ │ │ │ ├── double.ts │ │ │ │ ├── error.ts │ │ │ │ ├── extended_json.ts │ │ │ │ ├── index.ts │ │ │ │ ├── int_32.ts │ │ │ │ ├── long.ts │ │ │ │ ├── max_key.ts │ │ │ │ ├── min_key.ts │ │ │ │ ├── objectid.ts │ │ │ │ ├── parse_utf8.ts │ │ │ │ ├── parser │ │ │ │ │ ├── calculate_size.ts │ │ │ │ │ ├── deserializer.ts │ │ │ │ │ ├── on_demand │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── parse_to_elements.ts │ │ │ │ │ ├── serializer.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── regexp.ts │ │ │ │ ├── symbol.ts │ │ │ │ ├── timestamp.ts │ │ │ │ └── utils │ │ │ │ │ ├── byte_utils.ts │ │ │ │ │ ├── latin.ts │ │ │ │ │ ├── node_byte_utils.ts │ │ │ │ │ ├── number_utils.ts │ │ │ │ │ ├── string_utils.ts │ │ │ │ │ └── web_byte_utils.ts │ │ │ └── vendor │ │ │ │ ├── base64 │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── base64.js │ │ │ │ └── package.json │ │ │ │ └── text-encoding │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ ├── encoding-indexes.js │ │ │ │ └── encoding.js │ │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── call-bind-apply-helpers │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actualApply.d.ts │ │ │ ├── actualApply.js │ │ │ ├── applyBind.d.ts │ │ │ ├── applyBind.js │ │ │ ├── functionApply.d.ts │ │ │ ├── functionApply.js │ │ │ ├── functionCall.d.ts │ │ │ ├── functionCall.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── reflectApply.d.ts │ │ │ ├── reflectApply.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── call-bound │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── browser │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dunder-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── get.d.ts │ │ │ ├── get.js │ │ │ ├── package.json │ │ │ ├── set.d.ts │ │ │ ├── set.js │ │ │ ├── test │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── set.js │ │ │ └── tsconfig.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── es-define-property │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── es-errors │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eval.d.ts │ │ │ ├── eval.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── range.d.ts │ │ │ ├── range.js │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ ├── syntax.d.ts │ │ │ ├── syntax.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ ├── tsconfig.json │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── uri.d.ts │ │ │ └── uri.js │ │ ├── es-object-atoms │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RequireObjectCoercible.d.ts │ │ │ ├── RequireObjectCoercible.js │ │ │ ├── ToObject.d.ts │ │ │ ├── ToObject.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── isObject.d.ts │ │ │ ├── isObject.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── function-bind │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── SECURITY.md │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── implementation.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ ├── get-intrinsic │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── GetIntrinsic.js │ │ ├── get-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Object.getPrototypeOf.d.ts │ │ │ ├── Object.getPrototypeOf.js │ │ │ ├── README.md │ │ │ ├── Reflect.getPrototypeOf.d.ts │ │ │ ├── Reflect.getPrototypeOf.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── gopd │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gOPD.d.ts │ │ │ ├── gOPD.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── has-symbols │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── shams.d.ts │ │ │ ├── shams.js │ │ │ ├── test │ │ │ │ ├── index.js │ │ │ │ ├── shams │ │ │ │ │ ├── core-js.js │ │ │ │ │ └── get-own-property-symbols.js │ │ │ │ └── tests.js │ │ │ └── tsconfig.json │ │ ├── hasown │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── kareem │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── math-intrinsics │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abs.d.ts │ │ │ ├── abs.js │ │ │ ├── constants │ │ │ │ ├── maxArrayLength.d.ts │ │ │ │ ├── maxArrayLength.js │ │ │ │ ├── maxSafeInteger.d.ts │ │ │ │ ├── maxSafeInteger.js │ │ │ │ ├── maxValue.d.ts │ │ │ │ └── maxValue.js │ │ │ ├── floor.d.ts │ │ │ ├── floor.js │ │ │ ├── isFinite.d.ts │ │ │ ├── isFinite.js │ │ │ ├── isInteger.d.ts │ │ │ ├── isInteger.js │ │ │ ├── isNaN.d.ts │ │ │ ├── isNaN.js │ │ │ ├── isNegativeZero.d.ts │ │ │ ├── isNegativeZero.js │ │ │ ├── max.d.ts │ │ │ ├── max.js │ │ │ ├── min.d.ts │ │ │ ├── min.js │ │ │ ├── mod.d.ts │ │ │ ├── mod.js │ │ │ ├── package.json │ │ │ ├── pow.d.ts │ │ │ ├── pow.js │ │ │ ├── round.d.ts │ │ │ ├── round.js │ │ │ ├── sign.d.ts │ │ │ ├── sign.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── memory-pager │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── mongodb-connection-string-url │ │ │ ├── .esm-wrapper.mjs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── redact.d.ts │ │ │ │ ├── redact.js │ │ │ │ └── redact.js.map │ │ │ └── package.json │ │ ├── mongodb │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── admin.js │ │ │ │ ├── admin.js.map │ │ │ │ ├── beta.d.ts │ │ │ │ ├── beta.js │ │ │ │ ├── beta.js.map │ │ │ │ ├── bson.js │ │ │ │ ├── bson.js.map │ │ │ │ ├── bulk │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── ordered.js │ │ │ │ │ ├── ordered.js.map │ │ │ │ │ ├── unordered.js │ │ │ │ │ └── unordered.js.map │ │ │ │ ├── change_stream.js │ │ │ │ ├── change_stream.js.map │ │ │ │ ├── client-side-encryption │ │ │ │ │ ├── auto_encrypter.js │ │ │ │ │ ├── auto_encrypter.js.map │ │ │ │ │ ├── client_encryption.js │ │ │ │ │ ├── client_encryption.js.map │ │ │ │ │ ├── crypto_callbacks.js │ │ │ │ │ ├── crypto_callbacks.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── mongocryptd_manager.js │ │ │ │ │ ├── mongocryptd_manager.js.map │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── aws.js │ │ │ │ │ │ ├── aws.js.map │ │ │ │ │ │ ├── azure.js │ │ │ │ │ │ ├── azure.js.map │ │ │ │ │ │ ├── gcp.js │ │ │ │ │ │ ├── gcp.js.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── state_machine.js │ │ │ │ │ └── state_machine.js.map │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ │ ├── auth_provider.js.map │ │ │ │ │ │ ├── aws_temporary_credentials.js │ │ │ │ │ │ ├── aws_temporary_credentials.js.map │ │ │ │ │ │ ├── gssapi.js │ │ │ │ │ │ ├── gssapi.js.map │ │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ │ ├── mongo_credentials.js.map │ │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ │ ├── mongodb_aws.js.map │ │ │ │ │ │ ├── mongodb_oidc.js │ │ │ │ │ │ ├── mongodb_oidc.js.map │ │ │ │ │ │ ├── mongodb_oidc │ │ │ │ │ │ │ ├── automated_callback_workflow.js │ │ │ │ │ │ │ ├── automated_callback_workflow.js.map │ │ │ │ │ │ │ ├── azure_machine_workflow.js │ │ │ │ │ │ │ ├── azure_machine_workflow.js.map │ │ │ │ │ │ │ ├── callback_workflow.js │ │ │ │ │ │ │ ├── callback_workflow.js.map │ │ │ │ │ │ │ ├── command_builders.js │ │ │ │ │ │ │ ├── command_builders.js.map │ │ │ │ │ │ │ ├── gcp_machine_workflow.js │ │ │ │ │ │ │ ├── gcp_machine_workflow.js.map │ │ │ │ │ │ │ ├── human_callback_workflow.js │ │ │ │ │ │ │ ├── human_callback_workflow.js.map │ │ │ │ │ │ │ ├── k8s_machine_workflow.js │ │ │ │ │ │ │ ├── k8s_machine_workflow.js.map │ │ │ │ │ │ │ ├── machine_workflow.js │ │ │ │ │ │ │ ├── machine_workflow.js.map │ │ │ │ │ │ │ ├── token_cache.js │ │ │ │ │ │ │ ├── token_cache.js.map │ │ │ │ │ │ │ ├── token_machine_workflow.js │ │ │ │ │ │ │ └── token_machine_workflow.js.map │ │ │ │ │ │ ├── plain.js │ │ │ │ │ │ ├── plain.js.map │ │ │ │ │ │ ├── providers.js │ │ │ │ │ │ ├── providers.js.map │ │ │ │ │ │ ├── scram.js │ │ │ │ │ │ ├── scram.js.map │ │ │ │ │ │ ├── x509.js │ │ │ │ │ │ └── x509.js.map │ │ │ │ │ ├── command_monitoring_events.js │ │ │ │ │ ├── command_monitoring_events.js.map │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── commands.js.map │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── connect.js.map │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection.js.map │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── connection_pool.js.map │ │ │ │ │ ├── connection_pool_events.js │ │ │ │ │ ├── connection_pool_events.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── handshake │ │ │ │ │ │ ├── client_metadata.js │ │ │ │ │ │ └── client_metadata.js.map │ │ │ │ │ ├── metrics.js │ │ │ │ │ ├── metrics.js.map │ │ │ │ │ ├── stream_description.js │ │ │ │ │ ├── stream_description.js.map │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.js │ │ │ │ │ │ ├── compression.js.map │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── constants.js.map │ │ │ │ │ │ ├── on_data.js │ │ │ │ │ │ ├── on_data.js.map │ │ │ │ │ │ ├── on_demand │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ └── document.js.map │ │ │ │ │ │ ├── responses.js │ │ │ │ │ │ ├── responses.js.map │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── shared.js.map │ │ │ │ ├── collection.js │ │ │ │ ├── collection.js.map │ │ │ │ ├── connection_string.js │ │ │ │ ├── connection_string.js.map │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.js │ │ │ │ │ ├── abstract_cursor.js.map │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ ├── aggregation_cursor.js.map │ │ │ │ │ ├── change_stream_cursor.js │ │ │ │ │ ├── change_stream_cursor.js.map │ │ │ │ │ ├── client_bulk_write_cursor.js │ │ │ │ │ ├── client_bulk_write_cursor.js.map │ │ │ │ │ ├── find_cursor.js │ │ │ │ │ ├── find_cursor.js.map │ │ │ │ │ ├── list_collections_cursor.js │ │ │ │ │ ├── list_collections_cursor.js.map │ │ │ │ │ ├── list_indexes_cursor.js │ │ │ │ │ ├── list_indexes_cursor.js.map │ │ │ │ │ ├── list_search_indexes_cursor.js │ │ │ │ │ ├── list_search_indexes_cursor.js.map │ │ │ │ │ ├── run_command_cursor.js │ │ │ │ │ └── run_command_cursor.js.map │ │ │ │ ├── db.js │ │ │ │ ├── db.js.map │ │ │ │ ├── deps.js │ │ │ │ ├── deps.js.map │ │ │ │ ├── encrypter.js │ │ │ │ ├── encrypter.js.map │ │ │ │ ├── error.js │ │ │ │ ├── error.js.map │ │ │ │ ├── explain.js │ │ │ │ ├── explain.js.map │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.js │ │ │ │ │ ├── download.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── upload.js │ │ │ │ │ └── upload.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mongo_client.js │ │ │ │ ├── mongo_client.js.map │ │ │ │ ├── mongo_client_auth_providers.js │ │ │ │ ├── mongo_client_auth_providers.js.map │ │ │ │ ├── mongo_logger.js │ │ │ │ ├── mongo_logger.js.map │ │ │ │ ├── mongo_types.js │ │ │ │ ├── mongo_types.js.map │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate.js │ │ │ │ │ ├── aggregate.js.map │ │ │ │ │ ├── bulk_write.js │ │ │ │ │ ├── bulk_write.js.map │ │ │ │ │ ├── client_bulk_write │ │ │ │ │ │ ├── client_bulk_write.js │ │ │ │ │ │ ├── client_bulk_write.js.map │ │ │ │ │ │ ├── command_builder.js │ │ │ │ │ │ ├── command_builder.js.map │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── common.js.map │ │ │ │ │ │ ├── executor.js │ │ │ │ │ │ ├── executor.js.map │ │ │ │ │ │ ├── results_merger.js │ │ │ │ │ │ └── results_merger.js.map │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── collections.js.map │ │ │ │ │ ├── command.js │ │ │ │ │ ├── command.js.map │ │ │ │ │ ├── count.js │ │ │ │ │ ├── count.js.map │ │ │ │ │ ├── create_collection.js │ │ │ │ │ ├── create_collection.js.map │ │ │ │ │ ├── delete.js │ │ │ │ │ ├── delete.js.map │ │ │ │ │ ├── distinct.js │ │ │ │ │ ├── distinct.js.map │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── drop.js.map │ │ │ │ │ ├── estimated_document_count.js │ │ │ │ │ ├── estimated_document_count.js.map │ │ │ │ │ ├── execute_operation.js │ │ │ │ │ ├── execute_operation.js.map │ │ │ │ │ ├── find.js │ │ │ │ │ ├── find.js.map │ │ │ │ │ ├── find_and_modify.js │ │ │ │ │ ├── find_and_modify.js.map │ │ │ │ │ ├── get_more.js │ │ │ │ │ ├── get_more.js.map │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── indexes.js.map │ │ │ │ │ ├── insert.js │ │ │ │ │ ├── insert.js.map │ │ │ │ │ ├── is_capped.js │ │ │ │ │ ├── is_capped.js.map │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ ├── kill_cursors.js.map │ │ │ │ │ ├── list_collections.js │ │ │ │ │ ├── list_collections.js.map │ │ │ │ │ ├── list_databases.js │ │ │ │ │ ├── list_databases.js.map │ │ │ │ │ ├── operation.js │ │ │ │ │ ├── operation.js.map │ │ │ │ │ ├── options_operation.js │ │ │ │ │ ├── options_operation.js.map │ │ │ │ │ ├── profiling_level.js │ │ │ │ │ ├── profiling_level.js.map │ │ │ │ │ ├── remove_user.js │ │ │ │ │ ├── remove_user.js.map │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── rename.js.map │ │ │ │ │ ├── run_command.js │ │ │ │ │ ├── run_command.js.map │ │ │ │ │ ├── search_indexes │ │ │ │ │ │ ├── create.js │ │ │ │ │ │ ├── create.js.map │ │ │ │ │ │ ├── drop.js │ │ │ │ │ │ ├── drop.js.map │ │ │ │ │ │ ├── update.js │ │ │ │ │ │ └── update.js.map │ │ │ │ │ ├── set_profiling_level.js │ │ │ │ │ ├── set_profiling_level.js.map │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.js.map │ │ │ │ │ ├── update.js │ │ │ │ │ ├── update.js.map │ │ │ │ │ ├── validate_collection.js │ │ │ │ │ └── validate_collection.js.map │ │ │ │ ├── read_concern.js │ │ │ │ ├── read_concern.js.map │ │ │ │ ├── read_preference.js │ │ │ │ ├── read_preference.js.map │ │ │ │ ├── resource_management.js │ │ │ │ ├── resource_management.js.map │ │ │ │ ├── sdam │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── events.js │ │ │ │ │ ├── events.js.map │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── monitor.js.map │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server.js.map │ │ │ │ │ ├── server_description.js │ │ │ │ │ ├── server_description.js.map │ │ │ │ │ ├── server_selection.js │ │ │ │ │ ├── server_selection.js.map │ │ │ │ │ ├── server_selection_events.js │ │ │ │ │ ├── server_selection_events.js.map │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ ├── srv_polling.js.map │ │ │ │ │ ├── topology.js │ │ │ │ │ ├── topology.js.map │ │ │ │ │ ├── topology_description.js │ │ │ │ │ └── topology_description.js.map │ │ │ │ ├── sessions.js │ │ │ │ ├── sessions.js.map │ │ │ │ ├── sort.js │ │ │ │ ├── sort.js.map │ │ │ │ ├── timeout.js │ │ │ │ ├── timeout.js.map │ │ │ │ ├── transactions.js │ │ │ │ ├── transactions.js.map │ │ │ │ ├── utils.js │ │ │ │ ├── utils.js.map │ │ │ │ ├── write_concern.js │ │ │ │ └── write_concern.js.map │ │ │ ├── mongodb.d.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── admin.ts │ │ │ │ ├── beta.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bulk │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── ordered.ts │ │ │ │ │ └── unordered.ts │ │ │ │ ├── change_stream.ts │ │ │ │ ├── client-side-encryption │ │ │ │ │ ├── auto_encrypter.ts │ │ │ │ │ ├── client_encryption.ts │ │ │ │ │ ├── crypto_callbacks.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── mongocryptd_manager.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── aws.ts │ │ │ │ │ │ ├── azure.ts │ │ │ │ │ │ ├── gcp.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── state_machine.ts │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.ts │ │ │ │ │ │ ├── aws_temporary_credentials.ts │ │ │ │ │ │ ├── gssapi.ts │ │ │ │ │ │ ├── mongo_credentials.ts │ │ │ │ │ │ ├── mongodb_aws.ts │ │ │ │ │ │ ├── mongodb_oidc.ts │ │ │ │ │ │ ├── mongodb_oidc │ │ │ │ │ │ │ ├── automated_callback_workflow.ts │ │ │ │ │ │ │ ├── azure_machine_workflow.ts │ │ │ │ │ │ │ ├── callback_workflow.ts │ │ │ │ │ │ │ ├── command_builders.ts │ │ │ │ │ │ │ ├── gcp_machine_workflow.ts │ │ │ │ │ │ │ ├── human_callback_workflow.ts │ │ │ │ │ │ │ ├── k8s_machine_workflow.ts │ │ │ │ │ │ │ ├── machine_workflow.ts │ │ │ │ │ │ │ ├── token_cache.ts │ │ │ │ │ │ │ └── token_machine_workflow.ts │ │ │ │ │ │ ├── plain.ts │ │ │ │ │ │ ├── providers.ts │ │ │ │ │ │ ├── scram.ts │ │ │ │ │ │ └── x509.ts │ │ │ │ │ ├── command_monitoring_events.ts │ │ │ │ │ ├── commands.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── connection.ts │ │ │ │ │ ├── connection_pool.ts │ │ │ │ │ ├── connection_pool_events.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── handshake │ │ │ │ │ │ └── client_metadata.ts │ │ │ │ │ ├── metrics.ts │ │ │ │ │ ├── stream_description.ts │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── on_data.ts │ │ │ │ │ │ ├── on_demand │ │ │ │ │ │ └── document.ts │ │ │ │ │ │ ├── responses.ts │ │ │ │ │ │ └── shared.ts │ │ │ │ ├── collection.ts │ │ │ │ ├── connection_string.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.ts │ │ │ │ │ ├── aggregation_cursor.ts │ │ │ │ │ ├── change_stream_cursor.ts │ │ │ │ │ ├── client_bulk_write_cursor.ts │ │ │ │ │ ├── find_cursor.ts │ │ │ │ │ ├── list_collections_cursor.ts │ │ │ │ │ ├── list_indexes_cursor.ts │ │ │ │ │ ├── list_search_indexes_cursor.ts │ │ │ │ │ └── run_command_cursor.ts │ │ │ │ ├── db.ts │ │ │ │ ├── deps.ts │ │ │ │ ├── encrypter.ts │ │ │ │ ├── error.ts │ │ │ │ ├── explain.ts │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── upload.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mongo_client.ts │ │ │ │ ├── mongo_client_auth_providers.ts │ │ │ │ ├── mongo_logger.ts │ │ │ │ ├── mongo_types.ts │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate.ts │ │ │ │ │ ├── bulk_write.ts │ │ │ │ │ ├── client_bulk_write │ │ │ │ │ │ ├── client_bulk_write.ts │ │ │ │ │ │ ├── command_builder.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── executor.ts │ │ │ │ │ │ └── results_merger.ts │ │ │ │ │ ├── collections.ts │ │ │ │ │ ├── command.ts │ │ │ │ │ ├── count.ts │ │ │ │ │ ├── create_collection.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── distinct.ts │ │ │ │ │ ├── drop.ts │ │ │ │ │ ├── estimated_document_count.ts │ │ │ │ │ ├── execute_operation.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── find_and_modify.ts │ │ │ │ │ ├── get_more.ts │ │ │ │ │ ├── indexes.ts │ │ │ │ │ ├── insert.ts │ │ │ │ │ ├── is_capped.ts │ │ │ │ │ ├── kill_cursors.ts │ │ │ │ │ ├── list_collections.ts │ │ │ │ │ ├── list_databases.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── options_operation.ts │ │ │ │ │ ├── profiling_level.ts │ │ │ │ │ ├── remove_user.ts │ │ │ │ │ ├── rename.ts │ │ │ │ │ ├── run_command.ts │ │ │ │ │ ├── search_indexes │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── drop.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ ├── set_profiling_level.ts │ │ │ │ │ ├── stats.ts │ │ │ │ │ ├── update.ts │ │ │ │ │ └── validate_collection.ts │ │ │ │ ├── read_concern.ts │ │ │ │ ├── read_preference.ts │ │ │ │ ├── resource_management.ts │ │ │ │ ├── sdam │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── events.ts │ │ │ │ │ ├── monitor.ts │ │ │ │ │ ├── server.ts │ │ │ │ │ ├── server_description.ts │ │ │ │ │ ├── server_selection.ts │ │ │ │ │ ├── server_selection_events.ts │ │ │ │ │ ├── srv_polling.ts │ │ │ │ │ ├── topology.ts │ │ │ │ │ └── topology_description.ts │ │ │ │ ├── sessions.ts │ │ │ │ ├── sort.ts │ │ │ │ ├── timeout.ts │ │ │ │ ├── transactions.ts │ │ │ │ ├── utils.ts │ │ │ │ └── write_concern.ts │ │ │ └── tsconfig.json │ │ ├── mongoose │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── browser.js │ │ │ ├── dist │ │ │ │ └── browser.umd.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── aggregate.js │ │ │ │ ├── browser.js │ │ │ │ ├── browserDocument.js │ │ │ │ ├── cast.js │ │ │ │ ├── cast │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── int32.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── string.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── collection.js │ │ │ │ ├── connection.js │ │ │ │ ├── connectionState.js │ │ │ │ ├── constants.js │ │ │ │ ├── cursor │ │ │ │ │ ├── aggregationCursor.js │ │ │ │ │ ├── changeStream.js │ │ │ │ │ └── queryCursor.js │ │ │ │ ├── document.js │ │ │ │ ├── documentProvider.js │ │ │ │ ├── driver.js │ │ │ │ ├── drivers │ │ │ │ │ ├── SPEC.md │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── decimal128.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── objectid.js │ │ │ │ │ └── node-mongodb-native │ │ │ │ │ │ ├── bulkWriteResult.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── error │ │ │ │ │ ├── browserMissingSchema.js │ │ │ │ │ ├── bulkSaveIncompleteError.js │ │ │ │ │ ├── bulkWriteError.js │ │ │ │ │ ├── cast.js │ │ │ │ │ ├── createCollectionsError.js │ │ │ │ │ ├── divergentArray.js │ │ │ │ │ ├── eachAsyncMultiError.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── invalidSchemaOption.js │ │ │ │ │ ├── messages.js │ │ │ │ │ ├── missingSchema.js │ │ │ │ │ ├── mongooseError.js │ │ │ │ │ ├── notFound.js │ │ │ │ │ ├── objectExpected.js │ │ │ │ │ ├── objectParameter.js │ │ │ │ │ ├── overwriteModel.js │ │ │ │ │ ├── parallelSave.js │ │ │ │ │ ├── parallelValidate.js │ │ │ │ │ ├── serverSelection.js │ │ │ │ │ ├── setOptionError.js │ │ │ │ │ ├── strict.js │ │ │ │ │ ├── strictPopulate.js │ │ │ │ │ ├── syncIndexes.js │ │ │ │ │ ├── validation.js │ │ │ │ │ ├── validator.js │ │ │ │ │ └── version.js │ │ │ │ ├── helpers │ │ │ │ │ ├── aggregate │ │ │ │ │ │ ├── prepareDiscriminatorPipeline.js │ │ │ │ │ │ └── stringifyFunctionOperators.js │ │ │ │ │ ├── arrayDepth.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── createJSONSchemaTypeDefinition.js │ │ │ │ │ ├── cursor │ │ │ │ │ │ └── eachAsync.js │ │ │ │ │ ├── discriminator │ │ │ │ │ │ ├── applyEmbeddedDiscriminators.js │ │ │ │ │ │ ├── areDiscriminatorValuesEqual.js │ │ │ │ │ │ ├── checkEmbeddedDiscriminatorKeyProjection.js │ │ │ │ │ │ ├── getConstructor.js │ │ │ │ │ │ ├── getDiscriminatorByValue.js │ │ │ │ │ │ ├── getSchemaDiscriminatorByValue.js │ │ │ │ │ │ └── mergeDiscriminatorSchema.js │ │ │ │ │ ├── document │ │ │ │ │ │ ├── applyDefaults.js │ │ │ │ │ │ ├── applyTimestamps.js │ │ │ │ │ │ ├── applyVirtuals.js │ │ │ │ │ │ ├── cleanModifiedSubpaths.js │ │ │ │ │ │ ├── compile.js │ │ │ │ │ │ ├── getDeepestSubdocumentForPath.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ └── handleSpreadDoc.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── error │ │ │ │ │ │ └── combinePathErrors.js │ │ │ │ │ ├── firstKey.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── getConstructorName.js │ │ │ │ │ ├── getDefaultBulkwriteResult.js │ │ │ │ │ ├── getFunctionName.js │ │ │ │ │ ├── immediate.js │ │ │ │ │ ├── indexes │ │ │ │ │ │ ├── applySchemaCollation.js │ │ │ │ │ │ ├── decorateDiscriminatorIndexOptions.js │ │ │ │ │ │ ├── getRelatedIndexes.js │ │ │ │ │ │ ├── isDefaultIdIndex.js │ │ │ │ │ │ ├── isIndexEqual.js │ │ │ │ │ │ ├── isIndexSpecEqual.js │ │ │ │ │ │ ├── isTextIndex.js │ │ │ │ │ │ └── isTimeseriesIndex.js │ │ │ │ │ ├── isAsyncFunction.js │ │ │ │ │ ├── isBsonType.js │ │ │ │ │ ├── isMongooseObject.js │ │ │ │ │ ├── isObject.js │ │ │ │ │ ├── isPOJO.js │ │ │ │ │ ├── isPromise.js │ │ │ │ │ ├── isSimpleValidator.js │ │ │ │ │ ├── minimize.js │ │ │ │ │ ├── model │ │ │ │ │ │ ├── applyDefaultsToPOJO.js │ │ │ │ │ │ ├── applyHooks.js │ │ │ │ │ │ ├── applyMethods.js │ │ │ │ │ │ ├── applyStaticHooks.js │ │ │ │ │ │ ├── applyStatics.js │ │ │ │ │ │ ├── castBulkWrite.js │ │ │ │ │ │ ├── decorateBulkWriteResult.js │ │ │ │ │ │ ├── discriminator.js │ │ │ │ │ │ └── pushNestedArrayPaths.js │ │ │ │ │ ├── omitUndefined.js │ │ │ │ │ ├── once.js │ │ │ │ │ ├── parallelLimit.js │ │ │ │ │ ├── path │ │ │ │ │ │ ├── parentPaths.js │ │ │ │ │ │ └── setDottedPath.js │ │ │ │ │ ├── pluralize.js │ │ │ │ │ ├── populate │ │ │ │ │ │ ├── assignRawDocsToIdStructure.js │ │ │ │ │ │ ├── assignVals.js │ │ │ │ │ │ ├── createPopulateQueryFilter.js │ │ │ │ │ │ ├── getModelsMapForPopulate.js │ │ │ │ │ │ ├── getSchemaTypes.js │ │ │ │ │ │ ├── getVirtual.js │ │ │ │ │ │ ├── leanPopulateMap.js │ │ │ │ │ │ ├── lookupLocalFields.js │ │ │ │ │ │ ├── markArraySubdocsPopulated.js │ │ │ │ │ │ ├── modelNamesFromRefPath.js │ │ │ │ │ │ ├── removeDeselectedForeignField.js │ │ │ │ │ │ ├── setPopulatedVirtualValue.js │ │ │ │ │ │ ├── skipPopulateValue.js │ │ │ │ │ │ └── validateRef.js │ │ │ │ │ ├── printJestWarning.js │ │ │ │ │ ├── processConnectionOptions.js │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── applyProjection.js │ │ │ │ │ │ ├── hasIncludedChildren.js │ │ │ │ │ │ ├── isDefiningProjection.js │ │ │ │ │ │ ├── isExclusive.js │ │ │ │ │ │ ├── isInclusive.js │ │ │ │ │ │ ├── isNestedProjection.js │ │ │ │ │ │ ├── isPathExcluded.js │ │ │ │ │ │ ├── isPathSelectedInclusive.js │ │ │ │ │ │ ├── isSubpath.js │ │ │ │ │ │ └── parseProjection.js │ │ │ │ │ ├── promiseOrCallback.js │ │ │ │ │ ├── query │ │ │ │ │ │ ├── applyGlobalOption.js │ │ │ │ │ │ ├── cast$expr.js │ │ │ │ │ │ ├── castFilterPath.js │ │ │ │ │ │ ├── castUpdate.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ ├── handleImmutable.js │ │ │ │ │ │ ├── handleReadPreferenceAliases.js │ │ │ │ │ │ ├── hasDollarKeys.js │ │ │ │ │ │ ├── isOperator.js │ │ │ │ │ │ ├── sanitizeFilter.js │ │ │ │ │ │ ├── sanitizeProjection.js │ │ │ │ │ │ ├── selectPopulatedFields.js │ │ │ │ │ │ ├── trusted.js │ │ │ │ │ │ └── validOps.js │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── addAutoId.js │ │ │ │ │ │ ├── applyBuiltinPlugins.js │ │ │ │ │ │ ├── applyPlugins.js │ │ │ │ │ │ ├── applyReadConcern.js │ │ │ │ │ │ ├── applyWriteConcern.js │ │ │ │ │ │ ├── cleanPositionalOperators.js │ │ │ │ │ │ ├── getIndexes.js │ │ │ │ │ │ ├── getKeysInSchemaOrder.js │ │ │ │ │ │ ├── getPath.js │ │ │ │ │ │ ├── getSubdocumentStrictValue.js │ │ │ │ │ │ ├── handleIdOption.js │ │ │ │ │ │ ├── handleTimestampOption.js │ │ │ │ │ │ ├── idGetter.js │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── schematype │ │ │ │ │ │ └── handleImmutable.js │ │ │ │ │ ├── setDefaultsOnInsert.js │ │ │ │ │ ├── specialProperties.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ ├── timers.js │ │ │ │ │ ├── timestamps │ │ │ │ │ │ ├── setDocumentTimestamps.js │ │ │ │ │ │ └── setupTimestamps.js │ │ │ │ │ ├── topology │ │ │ │ │ │ ├── allServersUnknown.js │ │ │ │ │ │ ├── isAtlas.js │ │ │ │ │ │ └── isSSLError.js │ │ │ │ │ ├── update │ │ │ │ │ │ ├── applyTimestampsToChildren.js │ │ │ │ │ │ ├── applyTimestampsToUpdate.js │ │ │ │ │ │ ├── castArrayFilters.js │ │ │ │ │ │ ├── decorateUpdateWithVersionKey.js │ │ │ │ │ │ ├── modifiedPaths.js │ │ │ │ │ │ ├── moveImmutableProperties.js │ │ │ │ │ │ ├── removeUnusedArrayFilters.js │ │ │ │ │ │ └── updatedPathsByArrayFilter.js │ │ │ │ │ └── updateValidators.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── model.js │ │ │ │ ├── modifiedPathsSnapshot.js │ │ │ │ ├── mongoose.js │ │ │ │ ├── options.js │ │ │ │ ├── options │ │ │ │ │ ├── populateOptions.js │ │ │ │ │ ├── propertyOptions.js │ │ │ │ │ ├── saveOptions.js │ │ │ │ │ ├── schemaArrayOptions.js │ │ │ │ │ ├── schemaBufferOptions.js │ │ │ │ │ ├── schemaDateOptions.js │ │ │ │ │ ├── schemaDocumentArrayOptions.js │ │ │ │ │ ├── schemaMapOptions.js │ │ │ │ │ ├── schemaNumberOptions.js │ │ │ │ │ ├── schemaObjectIdOptions.js │ │ │ │ │ ├── schemaStringOptions.js │ │ │ │ │ ├── schemaSubdocumentOptions.js │ │ │ │ │ ├── schemaTypeOptions.js │ │ │ │ │ └── virtualOptions.js │ │ │ │ ├── plugins │ │ │ │ │ ├── index.js │ │ │ │ │ ├── saveSubdocs.js │ │ │ │ │ ├── sharding.js │ │ │ │ │ ├── trackTransaction.js │ │ │ │ │ └── validateBeforeSave.js │ │ │ │ ├── query.js │ │ │ │ ├── queryHelpers.js │ │ │ │ ├── schema.js │ │ │ │ ├── schema │ │ │ │ │ ├── array.js │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentArray.js │ │ │ │ │ ├── documentArrayElement.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── int32.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mixed.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectId.js │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── bitwise.js │ │ │ │ │ │ ├── exists.js │ │ │ │ │ │ ├── geospatial.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── type.js │ │ │ │ │ ├── string.js │ │ │ │ │ ├── subdocument.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── schemaType.js │ │ │ │ ├── stateMachine.js │ │ │ │ ├── types │ │ │ │ │ ├── array │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── arraySubdocument.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentArray │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseDocumentArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── subdocument.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── utils.js │ │ │ │ ├── validOptions.js │ │ │ │ └── virtualType.js │ │ │ ├── node_modules │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── types │ │ │ │ ├── aggregate.d.ts │ │ │ │ ├── augmentations.d.ts │ │ │ │ ├── callback.d.ts │ │ │ │ ├── collection.d.ts │ │ │ │ ├── connection.d.ts │ │ │ │ ├── cursor.d.ts │ │ │ │ ├── document.d.ts │ │ │ │ ├── error.d.ts │ │ │ │ ├── expressions.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── indexes.d.ts │ │ │ │ ├── inferrawdoctype.d.ts │ │ │ │ ├── inferschematype.d.ts │ │ │ │ ├── middlewares.d.ts │ │ │ │ ├── models.d.ts │ │ │ │ ├── mongooseoptions.d.ts │ │ │ │ ├── pipelinestage.d.ts │ │ │ │ ├── populate.d.ts │ │ │ │ ├── query.d.ts │ │ │ │ ├── schemaoptions.d.ts │ │ │ │ ├── schematypes.d.ts │ │ │ │ ├── session.d.ts │ │ │ │ ├── types.d.ts │ │ │ │ ├── utility.d.ts │ │ │ │ ├── validation.d.ts │ │ │ │ └── virtuals.d.ts │ │ ├── mpath │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ ├── mquery │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── lib │ │ │ │ ├── collection │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── mquery.js │ │ │ │ ├── permissions.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── object-inspect │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ ├── all.js │ │ │ │ ├── circular.js │ │ │ │ ├── fn.js │ │ │ │ └── inspect.js │ │ │ ├── index.js │ │ │ ├── package-support.json │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ ├── test-core-js.js │ │ │ ├── test │ │ │ │ ├── bigint.js │ │ │ │ ├── browser │ │ │ │ │ └── dom.js │ │ │ │ ├── circular.js │ │ │ │ ├── deep.js │ │ │ │ ├── element.js │ │ │ │ ├── err.js │ │ │ │ ├── fakes.js │ │ │ │ ├── fn.js │ │ │ │ ├── global.js │ │ │ │ ├── has.js │ │ │ │ ├── holes.js │ │ │ │ ├── indent-option.js │ │ │ │ ├── inspect.js │ │ │ │ ├── lowbyte.js │ │ │ │ ├── number.js │ │ │ │ ├── quoteStyle.js │ │ │ │ ├── toStringTag.js │ │ │ │ ├── undef.js │ │ │ │ └── values.js │ │ │ └── util.inspect.js │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── punycode │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── punycode.es6.js │ │ │ └── punycode.js │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── empty-keys-cases.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── encodeurl │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── side-channel-list │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── list.d.ts │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-map │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-weakmap │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── sift │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── es │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── es5m │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── core.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── operations.d.ts │ │ │ │ └── utils.d.ts │ │ │ ├── package.json │ │ │ ├── sift.csp.min.js │ │ │ ├── sift.csp.min.js.map │ │ │ ├── sift.min.js │ │ │ ├── sift.min.js.map │ │ │ └── src │ │ │ │ ├── core.ts │ │ │ │ ├── index.ts │ │ │ │ ├── operations.ts │ │ │ │ └── utils.ts │ │ ├── sparse-bitfield │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── tr46 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── mappingTable.json │ │ │ │ ├── regexes.js │ │ │ │ └── statusMapping.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── webidl-conversions │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ └── whatwg-url │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── Function.js │ │ │ ├── URL-impl.js │ │ │ ├── URL.js │ │ │ ├── URLSearchParams-impl.js │ │ │ ├── URLSearchParams.js │ │ │ ├── VoidFunction.js │ │ │ ├── encoding.js │ │ │ ├── infra.js │ │ │ ├── percent-encoding.js │ │ │ ├── url-state-machine.js │ │ │ ├── urlencoded.js │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── webidl2js-wrapper.js │ ├── package-lock.json │ └── package.json ├── class 08 │ ├── .gitignore │ ├── app.js │ ├── models │ │ └── userSchema.js │ ├── package-lock.json │ └── package.json ├── class 09 │ └── server │ │ ├── .gitignore │ │ ├── app.js │ │ ├── models │ │ └── todoSchema.js │ │ ├── package-lock.json │ │ └── package.json ├── class 10 │ ├── client │ │ ├── app.js │ │ ├── index.html │ │ └── style.css │ └── server │ │ ├── .gitignore │ │ ├── app.js │ │ ├── models │ │ └── todoSchema.js │ │ ├── package-lock.json │ │ └── package.json ├── class 11 │ ├── .gitignore │ ├── app.js │ ├── models │ │ └── UserSchema.js │ ├── package-lock.json │ └── package.json ├── class 12 │ ├── .gitignore │ ├── app.js │ ├── models │ │ └── UserSchema.js │ ├── package-lock.json │ └── package.json ├── class 13 │ ├── app.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── bcrypt │ │ │ ├── bcrypt.cmd │ │ │ └── bcrypt.ps1 │ │ ├── .package-lock.json │ │ ├── @mongodb-js │ │ │ └── saslprep │ │ │ │ ├── LICENSE │ │ │ │ ├── dist │ │ │ │ ├── .esm-wrapper.mjs │ │ │ │ ├── browser.d.ts │ │ │ │ ├── browser.d.ts.map │ │ │ │ ├── browser.js │ │ │ │ ├── browser.js.map │ │ │ │ ├── code-points-data-browser.d.ts │ │ │ │ ├── code-points-data-browser.d.ts.map │ │ │ │ ├── code-points-data-browser.js │ │ │ │ ├── code-points-data-browser.js.map │ │ │ │ ├── code-points-data.d.ts │ │ │ │ ├── code-points-data.d.ts.map │ │ │ │ ├── code-points-data.js │ │ │ │ ├── code-points-data.js.map │ │ │ │ ├── code-points-src.d.ts │ │ │ │ ├── code-points-src.d.ts.map │ │ │ │ ├── code-points-src.js │ │ │ │ ├── code-points-src.js.map │ │ │ │ ├── generate-code-points.d.ts │ │ │ │ ├── generate-code-points.d.ts.map │ │ │ │ ├── generate-code-points.js │ │ │ │ ├── generate-code-points.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── memory-code-points.d.ts │ │ │ │ ├── memory-code-points.d.ts.map │ │ │ │ ├── memory-code-points.js │ │ │ │ ├── memory-code-points.js.map │ │ │ │ ├── node.d.ts │ │ │ │ ├── node.d.ts.map │ │ │ │ ├── node.js │ │ │ │ ├── node.js.map │ │ │ │ ├── util.d.ts │ │ │ │ ├── util.d.ts.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── @types │ │ │ ├── webidl-conversions │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ └── whatwg-url │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── lib │ │ │ │ ├── URL-impl.d.ts │ │ │ │ ├── URL.d.ts │ │ │ │ ├── URLSearchParams-impl.d.ts │ │ │ │ └── URLSearchParams.d.ts │ │ │ │ ├── package.json │ │ │ │ └── webidl2js-wrapper.d.ts │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── bcryptjs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── bcrypt │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── types.d.ts │ │ │ └── umd │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── types.d.ts │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ ├── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── bson │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bson.d.ts │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── bson.bundle.js │ │ │ │ ├── bson.bundle.js.map │ │ │ │ ├── bson.cjs │ │ │ │ ├── bson.cjs.map │ │ │ │ ├── bson.mjs │ │ │ │ ├── bson.mjs.map │ │ │ │ ├── bson.node.mjs │ │ │ │ ├── bson.node.mjs.map │ │ │ │ ├── bson.rn.cjs │ │ │ │ └── bson.rn.cjs.map │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── binary.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bson_value.ts │ │ │ │ ├── code.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── db_ref.ts │ │ │ │ ├── decimal128.ts │ │ │ │ ├── double.ts │ │ │ │ ├── error.ts │ │ │ │ ├── extended_json.ts │ │ │ │ ├── index.ts │ │ │ │ ├── int_32.ts │ │ │ │ ├── long.ts │ │ │ │ ├── max_key.ts │ │ │ │ ├── min_key.ts │ │ │ │ ├── objectid.ts │ │ │ │ ├── parse_utf8.ts │ │ │ │ ├── parser │ │ │ │ │ ├── calculate_size.ts │ │ │ │ │ ├── deserializer.ts │ │ │ │ │ ├── on_demand │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── parse_to_elements.ts │ │ │ │ │ ├── serializer.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── regexp.ts │ │ │ │ ├── symbol.ts │ │ │ │ ├── timestamp.ts │ │ │ │ └── utils │ │ │ │ │ ├── byte_utils.ts │ │ │ │ │ ├── latin.ts │ │ │ │ │ ├── node_byte_utils.ts │ │ │ │ │ ├── number_utils.ts │ │ │ │ │ ├── string_utils.ts │ │ │ │ │ └── web_byte_utils.ts │ │ │ └── vendor │ │ │ │ ├── base64 │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── base64.js │ │ │ │ └── package.json │ │ │ │ └── text-encoding │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ ├── encoding-indexes.js │ │ │ │ └── encoding.js │ │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── call-bind-apply-helpers │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actualApply.d.ts │ │ │ ├── actualApply.js │ │ │ ├── applyBind.d.ts │ │ │ ├── applyBind.js │ │ │ ├── functionApply.d.ts │ │ │ ├── functionApply.js │ │ │ ├── functionCall.d.ts │ │ │ ├── functionCall.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── reflectApply.d.ts │ │ │ ├── reflectApply.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── call-bound │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── common.js │ │ │ │ ├── index.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── browser │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── dunder-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── get.d.ts │ │ │ ├── get.js │ │ │ ├── package.json │ │ │ ├── set.d.ts │ │ │ ├── set.js │ │ │ ├── test │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── set.js │ │ │ └── tsconfig.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── es-define-property │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── es-errors │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eval.d.ts │ │ │ ├── eval.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── range.d.ts │ │ │ ├── range.js │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ ├── syntax.d.ts │ │ │ ├── syntax.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ ├── tsconfig.json │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── uri.d.ts │ │ │ └── uri.js │ │ ├── es-object-atoms │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RequireObjectCoercible.d.ts │ │ │ ├── RequireObjectCoercible.js │ │ │ ├── ToObject.d.ts │ │ │ ├── ToObject.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── isObject.d.ts │ │ │ ├── isObject.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── function-bind │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── SECURITY.md │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── implementation.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ ├── get-intrinsic │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── GetIntrinsic.js │ │ ├── get-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Object.getPrototypeOf.d.ts │ │ │ ├── Object.getPrototypeOf.js │ │ │ ├── README.md │ │ │ ├── Reflect.getPrototypeOf.d.ts │ │ │ ├── Reflect.getPrototypeOf.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── gopd │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gOPD.d.ts │ │ │ ├── gOPD.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── has-symbols │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── shams.d.ts │ │ │ ├── shams.js │ │ │ ├── test │ │ │ │ ├── index.js │ │ │ │ ├── shams │ │ │ │ │ ├── core-js.js │ │ │ │ │ └── get-own-property-symbols.js │ │ │ │ └── tests.js │ │ │ └── tsconfig.json │ │ ├── hasown │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── statuses │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── codes.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── .github │ │ │ │ └── dependabot.yml │ │ │ ├── .idea │ │ │ │ ├── codeStyles │ │ │ │ │ ├── Project.xml │ │ │ │ │ └── codeStyleConfig.xml │ │ │ │ ├── iconv-lite.iml │ │ │ │ ├── inspectionProfiles │ │ │ │ │ └── Project_Default.xml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ ├── utf32.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── is-promise │ │ │ ├── LICENSE │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.mjs │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── kareem │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── math-intrinsics │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abs.d.ts │ │ │ ├── abs.js │ │ │ ├── constants │ │ │ │ ├── maxArrayLength.d.ts │ │ │ │ ├── maxArrayLength.js │ │ │ │ ├── maxSafeInteger.d.ts │ │ │ │ ├── maxSafeInteger.js │ │ │ │ ├── maxValue.d.ts │ │ │ │ └── maxValue.js │ │ │ ├── floor.d.ts │ │ │ ├── floor.js │ │ │ ├── isFinite.d.ts │ │ │ ├── isFinite.js │ │ │ ├── isInteger.d.ts │ │ │ ├── isInteger.js │ │ │ ├── isNaN.d.ts │ │ │ ├── isNaN.js │ │ │ ├── isNegativeZero.d.ts │ │ │ ├── isNegativeZero.js │ │ │ ├── max.d.ts │ │ │ ├── max.js │ │ │ ├── min.d.ts │ │ │ ├── min.js │ │ │ ├── mod.d.ts │ │ │ ├── mod.js │ │ │ ├── package.json │ │ │ ├── pow.d.ts │ │ │ ├── pow.js │ │ │ ├── round.d.ts │ │ │ ├── round.js │ │ │ ├── sign.d.ts │ │ │ ├── sign.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── memory-pager │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── merge-descriptors │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── mimeScore.js │ │ │ └── package.json │ │ ├── mongodb-connection-string-url │ │ │ ├── .esm-wrapper.mjs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── redact.d.ts │ │ │ │ ├── redact.js │ │ │ │ └── redact.js.map │ │ │ └── package.json │ │ ├── mongodb │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── admin.js │ │ │ │ ├── admin.js.map │ │ │ │ ├── beta.d.ts │ │ │ │ ├── beta.js │ │ │ │ ├── beta.js.map │ │ │ │ ├── bson.js │ │ │ │ ├── bson.js.map │ │ │ │ ├── bulk │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── ordered.js │ │ │ │ │ ├── ordered.js.map │ │ │ │ │ ├── unordered.js │ │ │ │ │ └── unordered.js.map │ │ │ │ ├── change_stream.js │ │ │ │ ├── change_stream.js.map │ │ │ │ ├── client-side-encryption │ │ │ │ │ ├── auto_encrypter.js │ │ │ │ │ ├── auto_encrypter.js.map │ │ │ │ │ ├── client_encryption.js │ │ │ │ │ ├── client_encryption.js.map │ │ │ │ │ ├── crypto_callbacks.js │ │ │ │ │ ├── crypto_callbacks.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── mongocryptd_manager.js │ │ │ │ │ ├── mongocryptd_manager.js.map │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── aws.js │ │ │ │ │ │ ├── aws.js.map │ │ │ │ │ │ ├── azure.js │ │ │ │ │ │ ├── azure.js.map │ │ │ │ │ │ ├── gcp.js │ │ │ │ │ │ ├── gcp.js.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── state_machine.js │ │ │ │ │ └── state_machine.js.map │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ │ ├── auth_provider.js.map │ │ │ │ │ │ ├── aws_temporary_credentials.js │ │ │ │ │ │ ├── aws_temporary_credentials.js.map │ │ │ │ │ │ ├── gssapi.js │ │ │ │ │ │ ├── gssapi.js.map │ │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ │ ├── mongo_credentials.js.map │ │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ │ ├── mongodb_aws.js.map │ │ │ │ │ │ ├── mongodb_oidc.js │ │ │ │ │ │ ├── mongodb_oidc.js.map │ │ │ │ │ │ ├── mongodb_oidc │ │ │ │ │ │ │ ├── automated_callback_workflow.js │ │ │ │ │ │ │ ├── automated_callback_workflow.js.map │ │ │ │ │ │ │ ├── azure_machine_workflow.js │ │ │ │ │ │ │ ├── azure_machine_workflow.js.map │ │ │ │ │ │ │ ├── callback_workflow.js │ │ │ │ │ │ │ ├── callback_workflow.js.map │ │ │ │ │ │ │ ├── command_builders.js │ │ │ │ │ │ │ ├── command_builders.js.map │ │ │ │ │ │ │ ├── gcp_machine_workflow.js │ │ │ │ │ │ │ ├── gcp_machine_workflow.js.map │ │ │ │ │ │ │ ├── human_callback_workflow.js │ │ │ │ │ │ │ ├── human_callback_workflow.js.map │ │ │ │ │ │ │ ├── k8s_machine_workflow.js │ │ │ │ │ │ │ ├── k8s_machine_workflow.js.map │ │ │ │ │ │ │ ├── token_cache.js │ │ │ │ │ │ │ ├── token_cache.js.map │ │ │ │ │ │ │ ├── token_machine_workflow.js │ │ │ │ │ │ │ └── token_machine_workflow.js.map │ │ │ │ │ │ ├── plain.js │ │ │ │ │ │ ├── plain.js.map │ │ │ │ │ │ ├── providers.js │ │ │ │ │ │ ├── providers.js.map │ │ │ │ │ │ ├── scram.js │ │ │ │ │ │ ├── scram.js.map │ │ │ │ │ │ ├── x509.js │ │ │ │ │ │ └── x509.js.map │ │ │ │ │ ├── command_monitoring_events.js │ │ │ │ │ ├── command_monitoring_events.js.map │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── commands.js.map │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── connect.js.map │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection.js.map │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── connection_pool.js.map │ │ │ │ │ ├── connection_pool_events.js │ │ │ │ │ ├── connection_pool_events.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── handshake │ │ │ │ │ │ ├── client_metadata.js │ │ │ │ │ │ └── client_metadata.js.map │ │ │ │ │ ├── metrics.js │ │ │ │ │ ├── metrics.js.map │ │ │ │ │ ├── stream_description.js │ │ │ │ │ ├── stream_description.js.map │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.js │ │ │ │ │ │ ├── compression.js.map │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── constants.js.map │ │ │ │ │ │ ├── on_data.js │ │ │ │ │ │ ├── on_data.js.map │ │ │ │ │ │ ├── on_demand │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ └── document.js.map │ │ │ │ │ │ ├── responses.js │ │ │ │ │ │ ├── responses.js.map │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── shared.js.map │ │ │ │ ├── collection.js │ │ │ │ ├── collection.js.map │ │ │ │ ├── connection_string.js │ │ │ │ ├── connection_string.js.map │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.js │ │ │ │ │ ├── abstract_cursor.js.map │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ ├── aggregation_cursor.js.map │ │ │ │ │ ├── change_stream_cursor.js │ │ │ │ │ ├── change_stream_cursor.js.map │ │ │ │ │ ├── client_bulk_write_cursor.js │ │ │ │ │ ├── client_bulk_write_cursor.js.map │ │ │ │ │ ├── find_cursor.js │ │ │ │ │ ├── find_cursor.js.map │ │ │ │ │ ├── list_collections_cursor.js │ │ │ │ │ ├── list_collections_cursor.js.map │ │ │ │ │ ├── list_indexes_cursor.js │ │ │ │ │ ├── list_indexes_cursor.js.map │ │ │ │ │ ├── list_search_indexes_cursor.js │ │ │ │ │ ├── list_search_indexes_cursor.js.map │ │ │ │ │ ├── run_command_cursor.js │ │ │ │ │ └── run_command_cursor.js.map │ │ │ │ ├── db.js │ │ │ │ ├── db.js.map │ │ │ │ ├── deps.js │ │ │ │ ├── deps.js.map │ │ │ │ ├── encrypter.js │ │ │ │ ├── encrypter.js.map │ │ │ │ ├── error.js │ │ │ │ ├── error.js.map │ │ │ │ ├── explain.js │ │ │ │ ├── explain.js.map │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.js │ │ │ │ │ ├── download.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── upload.js │ │ │ │ │ └── upload.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mongo_client.js │ │ │ │ ├── mongo_client.js.map │ │ │ │ ├── mongo_client_auth_providers.js │ │ │ │ ├── mongo_client_auth_providers.js.map │ │ │ │ ├── mongo_logger.js │ │ │ │ ├── mongo_logger.js.map │ │ │ │ ├── mongo_types.js │ │ │ │ ├── mongo_types.js.map │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate.js │ │ │ │ │ ├── aggregate.js.map │ │ │ │ │ ├── bulk_write.js │ │ │ │ │ ├── bulk_write.js.map │ │ │ │ │ ├── client_bulk_write │ │ │ │ │ │ ├── client_bulk_write.js │ │ │ │ │ │ ├── client_bulk_write.js.map │ │ │ │ │ │ ├── command_builder.js │ │ │ │ │ │ ├── command_builder.js.map │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── common.js.map │ │ │ │ │ │ ├── executor.js │ │ │ │ │ │ ├── executor.js.map │ │ │ │ │ │ ├── results_merger.js │ │ │ │ │ │ └── results_merger.js.map │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── collections.js.map │ │ │ │ │ ├── command.js │ │ │ │ │ ├── command.js.map │ │ │ │ │ ├── count.js │ │ │ │ │ ├── count.js.map │ │ │ │ │ ├── create_collection.js │ │ │ │ │ ├── create_collection.js.map │ │ │ │ │ ├── delete.js │ │ │ │ │ ├── delete.js.map │ │ │ │ │ ├── distinct.js │ │ │ │ │ ├── distinct.js.map │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── drop.js.map │ │ │ │ │ ├── estimated_document_count.js │ │ │ │ │ ├── estimated_document_count.js.map │ │ │ │ │ ├── execute_operation.js │ │ │ │ │ ├── execute_operation.js.map │ │ │ │ │ ├── find.js │ │ │ │ │ ├── find.js.map │ │ │ │ │ ├── find_and_modify.js │ │ │ │ │ ├── find_and_modify.js.map │ │ │ │ │ ├── get_more.js │ │ │ │ │ ├── get_more.js.map │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── indexes.js.map │ │ │ │ │ ├── insert.js │ │ │ │ │ ├── insert.js.map │ │ │ │ │ ├── is_capped.js │ │ │ │ │ ├── is_capped.js.map │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ ├── kill_cursors.js.map │ │ │ │ │ ├── list_collections.js │ │ │ │ │ ├── list_collections.js.map │ │ │ │ │ ├── list_databases.js │ │ │ │ │ ├── list_databases.js.map │ │ │ │ │ ├── operation.js │ │ │ │ │ ├── operation.js.map │ │ │ │ │ ├── options_operation.js │ │ │ │ │ ├── options_operation.js.map │ │ │ │ │ ├── profiling_level.js │ │ │ │ │ ├── profiling_level.js.map │ │ │ │ │ ├── remove_user.js │ │ │ │ │ ├── remove_user.js.map │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── rename.js.map │ │ │ │ │ ├── run_command.js │ │ │ │ │ ├── run_command.js.map │ │ │ │ │ ├── search_indexes │ │ │ │ │ │ ├── create.js │ │ │ │ │ │ ├── create.js.map │ │ │ │ │ │ ├── drop.js │ │ │ │ │ │ ├── drop.js.map │ │ │ │ │ │ ├── update.js │ │ │ │ │ │ └── update.js.map │ │ │ │ │ ├── set_profiling_level.js │ │ │ │ │ ├── set_profiling_level.js.map │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.js.map │ │ │ │ │ ├── update.js │ │ │ │ │ ├── update.js.map │ │ │ │ │ ├── validate_collection.js │ │ │ │ │ └── validate_collection.js.map │ │ │ │ ├── read_concern.js │ │ │ │ ├── read_concern.js.map │ │ │ │ ├── read_preference.js │ │ │ │ ├── read_preference.js.map │ │ │ │ ├── resource_management.js │ │ │ │ ├── resource_management.js.map │ │ │ │ ├── sdam │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── events.js │ │ │ │ │ ├── events.js.map │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── monitor.js.map │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server.js.map │ │ │ │ │ ├── server_description.js │ │ │ │ │ ├── server_description.js.map │ │ │ │ │ ├── server_selection.js │ │ │ │ │ ├── server_selection.js.map │ │ │ │ │ ├── server_selection_events.js │ │ │ │ │ ├── server_selection_events.js.map │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ ├── srv_polling.js.map │ │ │ │ │ ├── topology.js │ │ │ │ │ ├── topology.js.map │ │ │ │ │ ├── topology_description.js │ │ │ │ │ └── topology_description.js.map │ │ │ │ ├── sessions.js │ │ │ │ ├── sessions.js.map │ │ │ │ ├── sort.js │ │ │ │ ├── sort.js.map │ │ │ │ ├── timeout.js │ │ │ │ ├── timeout.js.map │ │ │ │ ├── transactions.js │ │ │ │ ├── transactions.js.map │ │ │ │ ├── utils.js │ │ │ │ ├── utils.js.map │ │ │ │ ├── write_concern.js │ │ │ │ └── write_concern.js.map │ │ │ ├── mongodb.d.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── admin.ts │ │ │ │ ├── beta.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bulk │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── ordered.ts │ │ │ │ │ └── unordered.ts │ │ │ │ ├── change_stream.ts │ │ │ │ ├── client-side-encryption │ │ │ │ │ ├── auto_encrypter.ts │ │ │ │ │ ├── client_encryption.ts │ │ │ │ │ ├── crypto_callbacks.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── mongocryptd_manager.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── aws.ts │ │ │ │ │ │ ├── azure.ts │ │ │ │ │ │ ├── gcp.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── state_machine.ts │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.ts │ │ │ │ │ │ ├── aws_temporary_credentials.ts │ │ │ │ │ │ ├── gssapi.ts │ │ │ │ │ │ ├── mongo_credentials.ts │ │ │ │ │ │ ├── mongodb_aws.ts │ │ │ │ │ │ ├── mongodb_oidc.ts │ │ │ │ │ │ ├── mongodb_oidc │ │ │ │ │ │ │ ├── automated_callback_workflow.ts │ │ │ │ │ │ │ ├── azure_machine_workflow.ts │ │ │ │ │ │ │ ├── callback_workflow.ts │ │ │ │ │ │ │ ├── command_builders.ts │ │ │ │ │ │ │ ├── gcp_machine_workflow.ts │ │ │ │ │ │ │ ├── human_callback_workflow.ts │ │ │ │ │ │ │ ├── k8s_machine_workflow.ts │ │ │ │ │ │ │ ├── token_cache.ts │ │ │ │ │ │ │ └── token_machine_workflow.ts │ │ │ │ │ │ ├── plain.ts │ │ │ │ │ │ ├── providers.ts │ │ │ │ │ │ ├── scram.ts │ │ │ │ │ │ └── x509.ts │ │ │ │ │ ├── command_monitoring_events.ts │ │ │ │ │ ├── commands.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── connection.ts │ │ │ │ │ ├── connection_pool.ts │ │ │ │ │ ├── connection_pool_events.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── handshake │ │ │ │ │ │ └── client_metadata.ts │ │ │ │ │ ├── metrics.ts │ │ │ │ │ ├── stream_description.ts │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── on_data.ts │ │ │ │ │ │ ├── on_demand │ │ │ │ │ │ └── document.ts │ │ │ │ │ │ ├── responses.ts │ │ │ │ │ │ └── shared.ts │ │ │ │ ├── collection.ts │ │ │ │ ├── connection_string.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.ts │ │ │ │ │ ├── aggregation_cursor.ts │ │ │ │ │ ├── change_stream_cursor.ts │ │ │ │ │ ├── client_bulk_write_cursor.ts │ │ │ │ │ ├── find_cursor.ts │ │ │ │ │ ├── list_collections_cursor.ts │ │ │ │ │ ├── list_indexes_cursor.ts │ │ │ │ │ ├── list_search_indexes_cursor.ts │ │ │ │ │ └── run_command_cursor.ts │ │ │ │ ├── db.ts │ │ │ │ ├── deps.ts │ │ │ │ ├── encrypter.ts │ │ │ │ ├── error.ts │ │ │ │ ├── explain.ts │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── upload.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mongo_client.ts │ │ │ │ ├── mongo_client_auth_providers.ts │ │ │ │ ├── mongo_logger.ts │ │ │ │ ├── mongo_types.ts │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate.ts │ │ │ │ │ ├── bulk_write.ts │ │ │ │ │ ├── client_bulk_write │ │ │ │ │ │ ├── client_bulk_write.ts │ │ │ │ │ │ ├── command_builder.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── executor.ts │ │ │ │ │ │ └── results_merger.ts │ │ │ │ │ ├── collections.ts │ │ │ │ │ ├── command.ts │ │ │ │ │ ├── count.ts │ │ │ │ │ ├── create_collection.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── distinct.ts │ │ │ │ │ ├── drop.ts │ │ │ │ │ ├── estimated_document_count.ts │ │ │ │ │ ├── execute_operation.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── find_and_modify.ts │ │ │ │ │ ├── get_more.ts │ │ │ │ │ ├── indexes.ts │ │ │ │ │ ├── insert.ts │ │ │ │ │ ├── is_capped.ts │ │ │ │ │ ├── kill_cursors.ts │ │ │ │ │ ├── list_collections.ts │ │ │ │ │ ├── list_databases.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── options_operation.ts │ │ │ │ │ ├── profiling_level.ts │ │ │ │ │ ├── remove_user.ts │ │ │ │ │ ├── rename.ts │ │ │ │ │ ├── run_command.ts │ │ │ │ │ ├── search_indexes │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── drop.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ ├── set_profiling_level.ts │ │ │ │ │ ├── stats.ts │ │ │ │ │ ├── update.ts │ │ │ │ │ └── validate_collection.ts │ │ │ │ ├── read_concern.ts │ │ │ │ ├── read_preference.ts │ │ │ │ ├── resource_management.ts │ │ │ │ ├── sdam │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── events.ts │ │ │ │ │ ├── monitor.ts │ │ │ │ │ ├── server.ts │ │ │ │ │ ├── server_description.ts │ │ │ │ │ ├── server_selection.ts │ │ │ │ │ ├── server_selection_events.ts │ │ │ │ │ ├── srv_polling.ts │ │ │ │ │ ├── topology.ts │ │ │ │ │ └── topology_description.ts │ │ │ │ ├── sessions.ts │ │ │ │ ├── sort.ts │ │ │ │ ├── timeout.ts │ │ │ │ ├── transactions.ts │ │ │ │ ├── utils.ts │ │ │ │ └── write_concern.ts │ │ │ └── tsconfig.json │ │ ├── mongoose │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── browser.js │ │ │ ├── dist │ │ │ │ └── browser.umd.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── aggregate.js │ │ │ │ ├── browser.js │ │ │ │ ├── browserDocument.js │ │ │ │ ├── cast.js │ │ │ │ ├── cast │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── int32.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── string.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── collection.js │ │ │ │ ├── connection.js │ │ │ │ ├── connectionState.js │ │ │ │ ├── constants.js │ │ │ │ ├── cursor │ │ │ │ │ ├── aggregationCursor.js │ │ │ │ │ ├── changeStream.js │ │ │ │ │ └── queryCursor.js │ │ │ │ ├── document.js │ │ │ │ ├── documentProvider.js │ │ │ │ ├── driver.js │ │ │ │ ├── drivers │ │ │ │ │ ├── SPEC.md │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── decimal128.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── objectid.js │ │ │ │ │ └── node-mongodb-native │ │ │ │ │ │ ├── bulkWriteResult.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── error │ │ │ │ │ ├── browserMissingSchema.js │ │ │ │ │ ├── bulkSaveIncompleteError.js │ │ │ │ │ ├── bulkWriteError.js │ │ │ │ │ ├── cast.js │ │ │ │ │ ├── createCollectionsError.js │ │ │ │ │ ├── divergentArray.js │ │ │ │ │ ├── eachAsyncMultiError.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── invalidSchemaOption.js │ │ │ │ │ ├── messages.js │ │ │ │ │ ├── missingSchema.js │ │ │ │ │ ├── mongooseError.js │ │ │ │ │ ├── notFound.js │ │ │ │ │ ├── objectExpected.js │ │ │ │ │ ├── objectParameter.js │ │ │ │ │ ├── overwriteModel.js │ │ │ │ │ ├── parallelSave.js │ │ │ │ │ ├── parallelValidate.js │ │ │ │ │ ├── serverSelection.js │ │ │ │ │ ├── setOptionError.js │ │ │ │ │ ├── strict.js │ │ │ │ │ ├── strictPopulate.js │ │ │ │ │ ├── syncIndexes.js │ │ │ │ │ ├── validation.js │ │ │ │ │ ├── validator.js │ │ │ │ │ └── version.js │ │ │ │ ├── helpers │ │ │ │ │ ├── aggregate │ │ │ │ │ │ ├── prepareDiscriminatorPipeline.js │ │ │ │ │ │ └── stringifyFunctionOperators.js │ │ │ │ │ ├── arrayDepth.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── createJSONSchemaTypeDefinition.js │ │ │ │ │ ├── cursor │ │ │ │ │ │ └── eachAsync.js │ │ │ │ │ ├── discriminator │ │ │ │ │ │ ├── applyEmbeddedDiscriminators.js │ │ │ │ │ │ ├── areDiscriminatorValuesEqual.js │ │ │ │ │ │ ├── checkEmbeddedDiscriminatorKeyProjection.js │ │ │ │ │ │ ├── getConstructor.js │ │ │ │ │ │ ├── getDiscriminatorByValue.js │ │ │ │ │ │ ├── getSchemaDiscriminatorByValue.js │ │ │ │ │ │ └── mergeDiscriminatorSchema.js │ │ │ │ │ ├── document │ │ │ │ │ │ ├── applyDefaults.js │ │ │ │ │ │ ├── applyTimestamps.js │ │ │ │ │ │ ├── applyVirtuals.js │ │ │ │ │ │ ├── cleanModifiedSubpaths.js │ │ │ │ │ │ ├── compile.js │ │ │ │ │ │ ├── getDeepestSubdocumentForPath.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ └── handleSpreadDoc.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── error │ │ │ │ │ │ └── combinePathErrors.js │ │ │ │ │ ├── firstKey.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── getConstructorName.js │ │ │ │ │ ├── getDefaultBulkwriteResult.js │ │ │ │ │ ├── getFunctionName.js │ │ │ │ │ ├── immediate.js │ │ │ │ │ ├── indexes │ │ │ │ │ │ ├── applySchemaCollation.js │ │ │ │ │ │ ├── decorateDiscriminatorIndexOptions.js │ │ │ │ │ │ ├── getRelatedIndexes.js │ │ │ │ │ │ ├── isDefaultIdIndex.js │ │ │ │ │ │ ├── isIndexEqual.js │ │ │ │ │ │ ├── isIndexSpecEqual.js │ │ │ │ │ │ ├── isTextIndex.js │ │ │ │ │ │ └── isTimeseriesIndex.js │ │ │ │ │ ├── isAsyncFunction.js │ │ │ │ │ ├── isBsonType.js │ │ │ │ │ ├── isMongooseObject.js │ │ │ │ │ ├── isObject.js │ │ │ │ │ ├── isPOJO.js │ │ │ │ │ ├── isPromise.js │ │ │ │ │ ├── isSimpleValidator.js │ │ │ │ │ ├── minimize.js │ │ │ │ │ ├── model │ │ │ │ │ │ ├── applyDefaultsToPOJO.js │ │ │ │ │ │ ├── applyHooks.js │ │ │ │ │ │ ├── applyMethods.js │ │ │ │ │ │ ├── applyStaticHooks.js │ │ │ │ │ │ ├── applyStatics.js │ │ │ │ │ │ ├── castBulkWrite.js │ │ │ │ │ │ ├── decorateBulkWriteResult.js │ │ │ │ │ │ ├── discriminator.js │ │ │ │ │ │ └── pushNestedArrayPaths.js │ │ │ │ │ ├── omitUndefined.js │ │ │ │ │ ├── once.js │ │ │ │ │ ├── parallelLimit.js │ │ │ │ │ ├── path │ │ │ │ │ │ ├── parentPaths.js │ │ │ │ │ │ └── setDottedPath.js │ │ │ │ │ ├── pluralize.js │ │ │ │ │ ├── populate │ │ │ │ │ │ ├── assignRawDocsToIdStructure.js │ │ │ │ │ │ ├── assignVals.js │ │ │ │ │ │ ├── createPopulateQueryFilter.js │ │ │ │ │ │ ├── getModelsMapForPopulate.js │ │ │ │ │ │ ├── getSchemaTypes.js │ │ │ │ │ │ ├── getVirtual.js │ │ │ │ │ │ ├── leanPopulateMap.js │ │ │ │ │ │ ├── lookupLocalFields.js │ │ │ │ │ │ ├── markArraySubdocsPopulated.js │ │ │ │ │ │ ├── modelNamesFromRefPath.js │ │ │ │ │ │ ├── removeDeselectedForeignField.js │ │ │ │ │ │ ├── setPopulatedVirtualValue.js │ │ │ │ │ │ ├── skipPopulateValue.js │ │ │ │ │ │ └── validateRef.js │ │ │ │ │ ├── printJestWarning.js │ │ │ │ │ ├── processConnectionOptions.js │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── applyProjection.js │ │ │ │ │ │ ├── hasIncludedChildren.js │ │ │ │ │ │ ├── isDefiningProjection.js │ │ │ │ │ │ ├── isExclusive.js │ │ │ │ │ │ ├── isInclusive.js │ │ │ │ │ │ ├── isNestedProjection.js │ │ │ │ │ │ ├── isPathExcluded.js │ │ │ │ │ │ ├── isPathSelectedInclusive.js │ │ │ │ │ │ ├── isSubpath.js │ │ │ │ │ │ └── parseProjection.js │ │ │ │ │ ├── promiseOrCallback.js │ │ │ │ │ ├── query │ │ │ │ │ │ ├── applyGlobalOption.js │ │ │ │ │ │ ├── cast$expr.js │ │ │ │ │ │ ├── castFilterPath.js │ │ │ │ │ │ ├── castUpdate.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ ├── handleImmutable.js │ │ │ │ │ │ ├── handleReadPreferenceAliases.js │ │ │ │ │ │ ├── hasDollarKeys.js │ │ │ │ │ │ ├── isOperator.js │ │ │ │ │ │ ├── sanitizeFilter.js │ │ │ │ │ │ ├── sanitizeProjection.js │ │ │ │ │ │ ├── selectPopulatedFields.js │ │ │ │ │ │ ├── trusted.js │ │ │ │ │ │ └── validOps.js │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── addAutoId.js │ │ │ │ │ │ ├── applyBuiltinPlugins.js │ │ │ │ │ │ ├── applyPlugins.js │ │ │ │ │ │ ├── applyReadConcern.js │ │ │ │ │ │ ├── applyWriteConcern.js │ │ │ │ │ │ ├── cleanPositionalOperators.js │ │ │ │ │ │ ├── getIndexes.js │ │ │ │ │ │ ├── getKeysInSchemaOrder.js │ │ │ │ │ │ ├── getPath.js │ │ │ │ │ │ ├── getSubdocumentStrictValue.js │ │ │ │ │ │ ├── handleIdOption.js │ │ │ │ │ │ ├── handleTimestampOption.js │ │ │ │ │ │ ├── idGetter.js │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── schematype │ │ │ │ │ │ └── handleImmutable.js │ │ │ │ │ ├── setDefaultsOnInsert.js │ │ │ │ │ ├── specialProperties.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ ├── timers.js │ │ │ │ │ ├── timestamps │ │ │ │ │ │ ├── setDocumentTimestamps.js │ │ │ │ │ │ └── setupTimestamps.js │ │ │ │ │ ├── topology │ │ │ │ │ │ ├── allServersUnknown.js │ │ │ │ │ │ ├── isAtlas.js │ │ │ │ │ │ └── isSSLError.js │ │ │ │ │ ├── update │ │ │ │ │ │ ├── applyTimestampsToChildren.js │ │ │ │ │ │ ├── applyTimestampsToUpdate.js │ │ │ │ │ │ ├── castArrayFilters.js │ │ │ │ │ │ ├── decorateUpdateWithVersionKey.js │ │ │ │ │ │ ├── modifiedPaths.js │ │ │ │ │ │ ├── moveImmutableProperties.js │ │ │ │ │ │ ├── removeUnusedArrayFilters.js │ │ │ │ │ │ └── updatedPathsByArrayFilter.js │ │ │ │ │ └── updateValidators.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── model.js │ │ │ │ ├── modifiedPathsSnapshot.js │ │ │ │ ├── mongoose.js │ │ │ │ ├── options.js │ │ │ │ ├── options │ │ │ │ │ ├── populateOptions.js │ │ │ │ │ ├── propertyOptions.js │ │ │ │ │ ├── saveOptions.js │ │ │ │ │ ├── schemaArrayOptions.js │ │ │ │ │ ├── schemaBufferOptions.js │ │ │ │ │ ├── schemaDateOptions.js │ │ │ │ │ ├── schemaDocumentArrayOptions.js │ │ │ │ │ ├── schemaMapOptions.js │ │ │ │ │ ├── schemaNumberOptions.js │ │ │ │ │ ├── schemaObjectIdOptions.js │ │ │ │ │ ├── schemaStringOptions.js │ │ │ │ │ ├── schemaSubdocumentOptions.js │ │ │ │ │ ├── schemaTypeOptions.js │ │ │ │ │ └── virtualOptions.js │ │ │ │ ├── plugins │ │ │ │ │ ├── index.js │ │ │ │ │ ├── saveSubdocs.js │ │ │ │ │ ├── sharding.js │ │ │ │ │ ├── trackTransaction.js │ │ │ │ │ └── validateBeforeSave.js │ │ │ │ ├── query.js │ │ │ │ ├── queryHelpers.js │ │ │ │ ├── schema.js │ │ │ │ ├── schema │ │ │ │ │ ├── array.js │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentArray.js │ │ │ │ │ ├── documentArrayElement.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── int32.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mixed.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectId.js │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── bitwise.js │ │ │ │ │ │ ├── exists.js │ │ │ │ │ │ ├── geospatial.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── type.js │ │ │ │ │ ├── string.js │ │ │ │ │ ├── subdocument.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── schemaType.js │ │ │ │ ├── stateMachine.js │ │ │ │ ├── types │ │ │ │ │ ├── array │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── arraySubdocument.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentArray │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseDocumentArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── subdocument.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── utils.js │ │ │ │ ├── validOptions.js │ │ │ │ └── virtualType.js │ │ │ ├── package.json │ │ │ └── types │ │ │ │ ├── aggregate.d.ts │ │ │ │ ├── augmentations.d.ts │ │ │ │ ├── callback.d.ts │ │ │ │ ├── collection.d.ts │ │ │ │ ├── connection.d.ts │ │ │ │ ├── cursor.d.ts │ │ │ │ ├── document.d.ts │ │ │ │ ├── error.d.ts │ │ │ │ ├── expressions.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── indexes.d.ts │ │ │ │ ├── inferrawdoctype.d.ts │ │ │ │ ├── inferschematype.d.ts │ │ │ │ ├── middlewares.d.ts │ │ │ │ ├── models.d.ts │ │ │ │ ├── mongooseoptions.d.ts │ │ │ │ ├── pipelinestage.d.ts │ │ │ │ ├── populate.d.ts │ │ │ │ ├── query.d.ts │ │ │ │ ├── schemaoptions.d.ts │ │ │ │ ├── schematypes.d.ts │ │ │ │ ├── session.d.ts │ │ │ │ ├── types.d.ts │ │ │ │ ├── utility.d.ts │ │ │ │ ├── validation.d.ts │ │ │ │ └── virtuals.d.ts │ │ ├── mpath │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ ├── mquery │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── lib │ │ │ │ ├── collection │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── mquery.js │ │ │ │ ├── permissions.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── nodemailer │ │ │ ├── .gitattributes │ │ │ ├── .ncurc.js │ │ │ ├── .prettierrc.js │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.txt │ │ │ ├── lib │ │ │ │ ├── addressparser │ │ │ │ │ └── index.js │ │ │ │ ├── base64 │ │ │ │ │ └── index.js │ │ │ │ ├── dkim │ │ │ │ │ ├── index.js │ │ │ │ │ ├── message-parser.js │ │ │ │ │ ├── relaxed-body.js │ │ │ │ │ └── sign.js │ │ │ │ ├── fetch │ │ │ │ │ ├── cookies.js │ │ │ │ │ └── index.js │ │ │ │ ├── json-transport │ │ │ │ │ └── index.js │ │ │ │ ├── mail-composer │ │ │ │ │ └── index.js │ │ │ │ ├── mailer │ │ │ │ │ ├── index.js │ │ │ │ │ └── mail-message.js │ │ │ │ ├── mime-funcs │ │ │ │ │ ├── index.js │ │ │ │ │ └── mime-types.js │ │ │ │ ├── mime-node │ │ │ │ │ ├── index.js │ │ │ │ │ ├── last-newline.js │ │ │ │ │ ├── le-unix.js │ │ │ │ │ └── le-windows.js │ │ │ │ ├── nodemailer.js │ │ │ │ ├── punycode │ │ │ │ │ └── index.js │ │ │ │ ├── qp │ │ │ │ │ └── index.js │ │ │ │ ├── sendmail-transport │ │ │ │ │ └── index.js │ │ │ │ ├── ses-transport │ │ │ │ │ └── index.js │ │ │ │ ├── shared │ │ │ │ │ └── index.js │ │ │ │ ├── smtp-connection │ │ │ │ │ ├── data-stream.js │ │ │ │ │ ├── http-proxy-client.js │ │ │ │ │ └── index.js │ │ │ │ ├── smtp-pool │ │ │ │ │ ├── index.js │ │ │ │ │ └── pool-resource.js │ │ │ │ ├── smtp-transport │ │ │ │ │ └── index.js │ │ │ │ ├── stream-transport │ │ │ │ │ └── index.js │ │ │ │ ├── well-known │ │ │ │ │ ├── index.js │ │ │ │ │ └── services.json │ │ │ │ └── xoauth2 │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── object-inspect │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ ├── all.js │ │ │ │ ├── circular.js │ │ │ │ ├── fn.js │ │ │ │ └── inspect.js │ │ │ ├── index.js │ │ │ ├── package-support.json │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ ├── test-core-js.js │ │ │ ├── test │ │ │ │ ├── bigint.js │ │ │ │ ├── browser │ │ │ │ │ └── dom.js │ │ │ │ ├── circular.js │ │ │ │ ├── deep.js │ │ │ │ ├── element.js │ │ │ │ ├── err.js │ │ │ │ ├── fakes.js │ │ │ │ ├── fn.js │ │ │ │ ├── global.js │ │ │ │ ├── has.js │ │ │ │ ├── holes.js │ │ │ │ ├── indent-option.js │ │ │ │ ├── inspect.js │ │ │ │ ├── lowbyte.js │ │ │ │ ├── number.js │ │ │ │ ├── quoteStyle.js │ │ │ │ ├── toStringTag.js │ │ │ │ ├── undef.js │ │ │ │ └── values.js │ │ │ └── util.inspect.js │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── once │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── once.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── punycode │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── punycode.es6.js │ │ │ └── punycode.js │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── empty-keys-cases.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── router │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── side-channel-list │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── list.d.ts │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-map │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-weakmap │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── sift │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── es │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── es5m │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── core.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── operations.d.ts │ │ │ │ └── utils.d.ts │ │ │ ├── package.json │ │ │ ├── sift.csp.min.js │ │ │ ├── sift.csp.min.js.map │ │ │ ├── sift.min.js │ │ │ ├── sift.min.js.map │ │ │ └── src │ │ │ │ ├── core.ts │ │ │ │ ├── index.ts │ │ │ │ ├── operations.ts │ │ │ │ └── utils.ts │ │ ├── sparse-bitfield │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── tr46 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── mappingTable.json │ │ │ │ ├── regexes.js │ │ │ │ └── statusMapping.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── webidl-conversions │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── whatwg-url │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── Function.js │ │ │ │ ├── URL-impl.js │ │ │ │ ├── URL.js │ │ │ │ ├── URLSearchParams-impl.js │ │ │ │ ├── URLSearchParams.js │ │ │ │ ├── VoidFunction.js │ │ │ │ ├── encoding.js │ │ │ │ ├── infra.js │ │ │ │ ├── percent-encoding.js │ │ │ │ ├── url-state-machine.js │ │ │ │ ├── urlencoded.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── webidl2js-wrapper.js │ │ └── wrappy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── wrappy.js │ ├── package-lock.json │ ├── package.json │ └── schema │ │ └── User.js ├── class 14 │ ├── .env │ ├── .gitignore │ ├── app.js │ ├── middleware │ │ └── auth.js │ ├── package-lock.json │ ├── package.json │ └── schema │ │ └── User.js └── class 15 │ ├── backend │ ├── .env │ ├── .gitignore │ ├── app.js │ ├── config │ │ ├── cloudinary.js │ │ └── db.js │ ├── controller │ │ ├── adminController.js │ │ ├── authController.js │ │ ├── imageController.js │ │ └── restaurantController.js │ ├── middleware │ │ ├── auth.js │ │ └── multer.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ │ ├── admin.js │ │ ├── auth.js │ │ ├── restaurant.js │ │ └── uploadImage.js │ ├── schema │ │ ├── Restaurant.js │ │ ├── User.js │ │ └── otp.js │ └── templates │ │ ├── emailTemplate.js │ │ └── welcomeTemplate.js │ └── frontend │ └── project │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ ├── ChatGPT Image Jul 13, 2025, 10_41_49 AM.png │ │ └── react.svg │ ├── components │ │ ├── Layouts │ │ │ ├── AdminLayout.jsx │ │ │ └── VendorLayout.jsx │ │ ├── Modals │ │ │ ├── AddMenu.jsx │ │ │ ├── AddRestaurant.jsx │ │ │ └── EditRestaurant.jsx │ │ ├── RestauarantCard │ │ │ └── index.jsx │ │ └── index.js │ ├── constant │ │ └── apiEndpoint.js │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── admin │ │ │ └── AllRestaurant │ │ │ │ └── index.jsx │ │ ├── auth │ │ │ ├── OtpVerificationPage │ │ │ │ └── index.jsx │ │ │ ├── login │ │ │ │ └── index.jsx │ │ │ └── signup │ │ │ │ └── index.jsx │ │ ├── dashboards │ │ │ └── admin │ │ │ │ └── index.jsx │ │ ├── index.js │ │ └── vendor │ │ │ ├── dashboard │ │ │ └── index.jsx │ │ │ ├── menu │ │ │ └── index.jsx │ │ │ ├── order │ │ │ └── index.jsx │ │ │ └── restaurant │ │ │ └── index.jsx │ └── utils │ │ └── index.js │ └── vite.config.js ├── HTML & CSS ├── class 03 │ ├── index.html │ └── myfirstweb.html ├── class 04 │ ├── about.html │ └── index.html ├── class 05 │ ├── images │ │ ├── Document.html │ │ ├── Document_files │ │ │ └── app.js.download │ │ ├── car1.jpg │ │ └── d26d2aab2ff63cb48b3a91b0e8e0aa55.jpg │ ├── index.html │ └── pages │ │ └── about │ │ └── about.html ├── class 06 │ ├── images │ │ ├── car1.jpg │ │ └── car2.jpg │ └── index.html ├── class 07 │ └── index.html ├── class 08 │ └── index.html ├── class 09 │ └── index.html ├── class 10 │ ├── index.html │ └── style.css ├── class 11 │ ├── index.html │ └── style.css ├── class 12 │ ├── index.html │ └── style.css ├── class 13 │ ├── index.html │ └── style.css ├── class 14 │ ├── index.html │ └── style.css ├── class 15 │ ├── 35.png │ ├── apple-logo.png │ ├── index.html │ ├── painting-mountain-lake-with-mountain-background_188544-9126.avif │ ├── pexels-mikebirdy-120049.jpg │ ├── pngtree-modern-double-color-futuristic-neon-background-image_351866.jpg │ └── style.css ├── class 16 │ ├── index.html │ ├── promo_apple_vision_pro__f4v4zp0sum2y_small.jpg │ ├── rimac-nevera.jpg │ └── style.css ├── class 17 │ ├── index.html │ └── style.css ├── class 18 │ ├── index.html │ └── style.css ├── class 19 │ ├── 38.png │ ├── index.html │ ├── logo_saylaniwelfare.22bf709605809177256c.png │ ├── saylani.html │ └── style.css ├── class 20 │ ├── index.html │ └── style.css ├── class 21 │ ├── assets │ │ ├── image.jpg │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ └── image3.jpg │ ├── index.html │ └── style.css ├── class 22 │ ├── index.html │ ├── olx practice │ │ ├── assets │ │ │ ├── 437508562-800x600.jfif │ │ │ └── mobile.png │ │ ├── index.html │ │ └── style.css │ └── style.css └── duckett.pdf ├── JAVASCRIPT ├── JavaScript.pdf ├── class 01 │ ├── app.js │ └── index.html ├── class 02 │ ├── app.js │ └── index.html ├── class 03 │ ├── app.js │ └── index.html ├── class 04 │ ├── app.js │ └── index.html ├── class 05 │ ├── app.js │ ├── index.html │ └── notes.txt ├── class 06 │ ├── app.js │ └── index.html ├── class 07 │ ├── app.js │ └── index.html ├── class 08 │ ├── app.js │ └── index.html ├── class 09 │ ├── app.js │ └── index.html ├── class 10 │ ├── app.js │ └── index.html ├── class 11 │ ├── app.js │ └── index.html ├── class 12 │ ├── app.js │ └── index.html ├── class 13 │ ├── app.js │ ├── index.html │ └── style.css ├── class 14 │ ├── app.js │ ├── images │ │ ├── car1 │ │ ├── car2.webp │ │ ├── car22.gif │ │ ├── game1.png │ │ └── game2.gif │ └── index.html ├── class 15 │ ├── app.js │ ├── images │ │ ├── car1 │ │ ├── car2.webp │ │ ├── car22.gif │ │ ├── game1.png │ │ └── game2.gif │ ├── index.html │ └── style.css ├── class 16 │ ├── about.html │ ├── app.js │ ├── index.html │ └── style.css ├── class 17 │ ├── app.js │ └── index.html ├── class 18 │ ├── app.js │ └── index.html ├── class 19 │ ├── app.js │ ├── app2.js │ └── index.html ├── class 20 │ ├── app.js │ ├── index.html │ ├── object.html │ ├── object.js │ └── style.css ├── class 21 │ ├── app.js │ └── index.html ├── class 22 │ ├── app.js │ ├── index.html │ └── style.css ├── class 23 │ ├── app.js │ ├── index.html │ └── style.css ├── class 24 │ ├── about.html │ ├── app.js │ └── index.html ├── class 25 │ ├── app.js │ └── index.html ├── class 26 │ ├── app.js │ └── index.html ├── class 27 │ ├── app.js │ └── index.html ├── class 28 │ ├── app.js │ └── index.html ├── class 29 │ ├── app.js │ ├── data.js │ └── index.html └── class 30 │ ├── app.js │ └── index.html ├── Quiz App Project ├── admin │ ├── createQuiz │ │ ├── createQuiz.css │ │ ├── createQuiz.html │ │ └── createQuiz.js │ ├── dashboard │ │ ├── dashboard.css │ │ ├── dashboard.html │ │ └── dashboard.js │ └── quizList │ │ ├── quizList.css │ │ ├── quizList.html │ │ └── quizList.js ├── auth │ ├── Login │ │ └── login.js │ └── Signup │ │ ├── signup.html │ │ ├── signup.js │ │ └── sigup.css ├── firebase.js ├── index.html ├── style.css ├── user │ ├── dashboard │ │ ├── dashboard.css │ │ ├── dashboard.html │ │ └── dashboard.js │ ├── quizApp │ │ ├── quiz.css │ │ ├── quizApp.html │ │ └── quizApp.js │ └── scorelist │ │ ├── scorelist.css │ │ ├── scorelist.html │ │ └── scorelist.js └── utils │ └── utils.js ├── React ├── BlogApp │ └── blogApp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── AdminLayout.jsx │ │ │ ├── BlogCard.jsx │ │ │ └── Navbar.jsx │ │ ├── firebase.js │ │ ├── index.css │ │ ├── main.jsx │ │ ├── pages │ │ │ ├── BlogPage.jsx │ │ │ ├── CreateBlogPage.jsx │ │ │ ├── MyBlogPage.jsx │ │ │ ├── admin │ │ │ │ ├── AllBlog.jsx │ │ │ │ ├── AllUser.jsx │ │ │ │ └── adminDashboard.jsx │ │ │ └── auth │ │ │ │ ├── LoginPage.jsx │ │ │ │ └── SignupPage.jsx │ │ ├── routes │ │ │ ├── AdminRoutes.jsx │ │ │ ├── AuthRoute.jsx │ │ │ └── PrivateRoute.jsx │ │ └── utils │ │ │ └── index.js │ │ └── vite.config.js ├── class 01 │ ├── myapp │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.jsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── index.css │ │ │ └── main.jsx │ │ └── vite.config.js │ └── package-lock.json ├── class 02 │ └── myapp │ │ ├── .gitignore │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.jsx │ │ ├── components │ │ │ ├── Header.jsx │ │ │ └── NavLink.jsx │ │ ├── main.jsx │ │ └── style.css │ │ └── vite.config.js ├── class 03 │ └── myapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── footer.jsx │ │ │ └── footer.module.css │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 04 │ └── app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── Footer.jsx │ │ │ └── Navbar.jsx │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 05 │ └── app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── ChildCmp.jsx │ │ │ ├── Footer.jsx │ │ │ └── Navbar.jsx │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 06 │ └── mya │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 07 │ └── myapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── Card.jsx │ │ │ └── TodoApp.jsx │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 08 │ └── todoapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── Button │ │ │ │ ├── Button.jsx │ │ │ │ └── button.module.css │ │ │ └── TodoApp │ │ │ │ └── todo.jsx │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 09 │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── Button │ │ │ │ ├── Button.jsx │ │ │ │ └── button.module.css │ │ │ └── TodoApp │ │ │ │ └── todo.jsx │ │ ├── index.css │ │ └── main.jsx │ └── vite.config.js ├── class 10 │ └── weather-app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 11 │ └── myapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 12 │ └── myapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── app.module.css │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ ├── main.jsx │ │ └── pages │ │ │ ├── About.jsx │ │ │ ├── Contact.jsx │ │ │ ├── Home.jsx │ │ │ ├── List.jsx │ │ │ ├── React Assignment.txt │ │ │ ├── SingleProduct.jsx │ │ │ └── UserProfile.jsx │ │ └── vite.config.js ├── class 13 │ └── myapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── firebase.js │ │ ├── index.css │ │ ├── main.jsx │ │ └── pages │ │ │ ├── AboutPage.jsx │ │ │ ├── ContactPage.jsx │ │ │ ├── HomePage.jsx │ │ │ ├── NotFound.jsx │ │ │ └── auth │ │ │ └── Signup.jsx │ │ └── vite.config.js ├── class 14 │ └── react-form │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ └── main.jsx │ │ └── vite.config.js ├── class 15 │ └── redux │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ └── ChildCmp │ │ │ │ ├── Child1.jsx │ │ │ │ ├── Child2.jsx │ │ │ │ ├── Child3.jsx │ │ │ │ └── Child4.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ ├── redux │ │ │ ├── slices │ │ │ │ ├── counterSlice.js │ │ │ │ └── userSlice.js │ │ │ └── store.js │ │ └── store │ │ │ └── store.js │ │ └── vite.config.js └── class 16 │ └── react-redux │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── ChildCmp │ │ │ ├── Child1.jsx │ │ │ ├── Child2.jsx │ │ │ ├── Child3.jsx │ │ │ └── Child4.jsx │ │ └── ProductList │ │ │ └── index.jsx │ ├── index.css │ ├── main.jsx │ └── store │ │ ├── slices │ │ ├── counterSlice.js │ │ └── productSlice.js │ │ └── store.js │ └── vite.config.js ├── firebase ├── class 01 │ ├── app.js │ ├── firebase.js │ └── index.html ├── class 02 │ ├── app.js │ ├── firebase.js │ ├── index.html │ └── sign.html ├── class 03 │ ├── app.js │ ├── dashboard.html │ ├── firebase.js │ ├── index.html │ ├── signup.html │ └── signup.js └── class 04 │ ├── app.js │ ├── dashboard.html │ ├── dashboard.js │ ├── firebase.js │ ├── index.html │ ├── signup.html │ └── signup.js ├── storage ├── app.js └── index.html └── supabase ├── Class 01 ├── app.js ├── index.html ├── login.html ├── login.js ├── style.css └── styles.css └── class 02 ├── app.js └── index.html /Backend/class 01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 01/app.js -------------------------------------------------------------------------------- /Backend/class 01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 01/package.json -------------------------------------------------------------------------------- /Backend/class 01/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 01/utils.js -------------------------------------------------------------------------------- /Backend/class 02/# BACKEND TOPICS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 02/# BACKEND TOPICS.txt -------------------------------------------------------------------------------- /Backend/class 02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 02/app.js -------------------------------------------------------------------------------- /Backend/class 02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 02/package.json -------------------------------------------------------------------------------- /Backend/class 02/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 02/server.js -------------------------------------------------------------------------------- /Backend/class 02/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 02/utils.js -------------------------------------------------------------------------------- /Backend/class 03/# BACKEND TOPICS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/# BACKEND TOPICS.txt -------------------------------------------------------------------------------- /Backend/class 03/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/app.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/.bin/mime -------------------------------------------------------------------------------- /Backend/class 03/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Backend/class 03/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /Backend/class 03/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/call-bind-apply-helpers/actualApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.apply; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/call-bind-apply-helpers/functionApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.apply; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/call-bind-apply-helpers/functionCall.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.call; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /Backend/class 03/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Backend/class 03/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/debug/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/depd/History.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/depd/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/es-object-atoms/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Object; 5 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/etag/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/etag/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/get-proto/Reflect.getPrototypeOf.d.ts: -------------------------------------------------------------------------------- 1 | declare const x: typeof Reflect.getPrototypeOf | null; 2 | 3 | export = x; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/gopd/.eslintrc -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/gopd/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/gopd/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/gOPD.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor; 2 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/gOPD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/gopd/gOPD.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/gopd/index.d.ts -------------------------------------------------------------------------------- /Backend/class 03/node_modules/gopd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/gopd/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/hasown/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/hasown/.nycrc -------------------------------------------------------------------------------- /Backend/class 03/node_modules/hasown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/hasown/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/hasown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/hasown/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/abs.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.abs; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/floor.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.floor; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/max.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.max; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/min.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.min; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/pow.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.pow; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/round.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.round; -------------------------------------------------------------------------------- /Backend/class 03/node_modules/math-intrinsics/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | } 4 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/mime/types.json -------------------------------------------------------------------------------- /Backend/class 03/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/ms/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/ms/license.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/ms/package.json -------------------------------------------------------------------------------- /Backend/class 03/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/qs/package.json -------------------------------------------------------------------------------- /Backend/class 03/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/send/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/send/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Backend/class 03/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Backend/class 03/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/vary/README.md -------------------------------------------------------------------------------- /Backend/class 03/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/node_modules/vary/index.js -------------------------------------------------------------------------------- /Backend/class 03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/package-lock.json -------------------------------------------------------------------------------- /Backend/class 03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/package.json -------------------------------------------------------------------------------- /Backend/class 03/productData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/productData.js -------------------------------------------------------------------------------- /Backend/class 03/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 03/server.js -------------------------------------------------------------------------------- /Backend/class 04/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/app.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/.bin/mime -------------------------------------------------------------------------------- /Backend/class 04/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Backend/class 04/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /Backend/class 04/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/call-bind-apply-helpers/actualApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.apply; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/call-bind-apply-helpers/functionApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.apply; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/call-bind-apply-helpers/functionCall.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.call; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /Backend/class 04/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Backend/class 04/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/debug/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/depd/History.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/depd/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/es-object-atoms/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Object; 5 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/etag/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/etag/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/get-proto/Reflect.getPrototypeOf.d.ts: -------------------------------------------------------------------------------- 1 | declare const x: typeof Reflect.getPrototypeOf | null; 2 | 3 | export = x; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/gopd/.eslintrc -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/gopd/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/gopd/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/gOPD.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor; 2 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/gOPD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/gopd/gOPD.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/gopd/index.d.ts -------------------------------------------------------------------------------- /Backend/class 04/node_modules/gopd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/gopd/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/hasown/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/hasown/.nycrc -------------------------------------------------------------------------------- /Backend/class 04/node_modules/hasown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/hasown/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/hasown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/hasown/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/abs.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.abs; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/floor.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.floor; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/max.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.max; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/min.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.min; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/pow.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.pow; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/round.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.round; -------------------------------------------------------------------------------- /Backend/class 04/node_modules/math-intrinsics/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | } 4 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/mime/types.json -------------------------------------------------------------------------------- /Backend/class 04/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/ms/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/ms/license.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/ms/package.json -------------------------------------------------------------------------------- /Backend/class 04/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/qs/package.json -------------------------------------------------------------------------------- /Backend/class 04/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/send/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/send/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Backend/class 04/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Backend/class 04/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/vary/README.md -------------------------------------------------------------------------------- /Backend/class 04/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/node_modules/vary/index.js -------------------------------------------------------------------------------- /Backend/class 04/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/package-lock.json -------------------------------------------------------------------------------- /Backend/class 04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 04/package.json -------------------------------------------------------------------------------- /Backend/class 05/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 05/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 05/app.js -------------------------------------------------------------------------------- /Backend/class 05/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 05/package-lock.json -------------------------------------------------------------------------------- /Backend/class 05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 05/package.json -------------------------------------------------------------------------------- /Backend/class 05/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 05/users.txt -------------------------------------------------------------------------------- /Backend/class 06/# BACKEND TOPICS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/# BACKEND TOPICS.txt -------------------------------------------------------------------------------- /Backend/class 06/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 06/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/app.js -------------------------------------------------------------------------------- /Backend/class 06/client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/client/app.js -------------------------------------------------------------------------------- /Backend/class 06/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/client/index.html -------------------------------------------------------------------------------- /Backend/class 06/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/package-lock.json -------------------------------------------------------------------------------- /Backend/class 06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/package.json -------------------------------------------------------------------------------- /Backend/class 06/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 06/users.txt -------------------------------------------------------------------------------- /Backend/class 07/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/app.js -------------------------------------------------------------------------------- /Backend/class 07/models/userSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/models/userSchema.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/.bin/mime -------------------------------------------------------------------------------- /Backend/class 07/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Backend/class 07/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /Backend/class 07/node_modules/@mongodb-js/saslprep/dist/generate-code-points.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=generate-code-points.d.ts.map -------------------------------------------------------------------------------- /Backend/class 07/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/bson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/bson/LICENSE.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/bson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/bson/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/bson/bson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/bson/bson.d.ts -------------------------------------------------------------------------------- /Backend/class 07/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/call-bind-apply-helpers/actualApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.apply; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/call-bind-apply-helpers/functionApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.apply; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/call-bind-apply-helpers/functionCall.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.call; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /Backend/class 07/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Backend/class 07/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/debug/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/depd/History.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/depd/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/es-object-atoms/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Object; 5 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/etag/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/etag/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/get-proto/Reflect.getPrototypeOf.d.ts: -------------------------------------------------------------------------------- 1 | declare const x: typeof Reflect.getPrototypeOf | null; 2 | 3 | export = x; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/gopd/.eslintrc -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/gopd/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/gopd/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/gOPD.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor; 2 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/gOPD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/gopd/gOPD.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/gopd/index.d.ts -------------------------------------------------------------------------------- /Backend/class 07/node_modules/gopd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/gopd/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/hasown/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/hasown/.nycrc -------------------------------------------------------------------------------- /Backend/class 07/node_modules/hasown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/hasown/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/hasown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/hasown/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/kareem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/kareem/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/kareem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/kareem/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/abs.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.abs; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/floor.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.floor; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/max.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.max; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/min.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.min; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/pow.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.pow; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/round.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.round; -------------------------------------------------------------------------------- /Backend/class 07/node_modules/math-intrinsics/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | } 4 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mime/types.json -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mpath/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mpath/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mpath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mpath/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mpath/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | rules: 4 | no-unused-vars: off -------------------------------------------------------------------------------- /Backend/class 07/node_modules/mquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/mquery/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/ms/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/ms/license.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/ms/package.json -------------------------------------------------------------------------------- /Backend/class 07/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/qs/package.json -------------------------------------------------------------------------------- /Backend/class 07/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/send/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/send/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/sift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/sift/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/sift/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/sift/index.d.ts -------------------------------------------------------------------------------- /Backend/class 07/node_modules/sift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/sift/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Backend/class 07/node_modules/tr46/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/tr46/LICENSE.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/tr46/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/tr46/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/tr46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/tr46/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Backend/class 07/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Backend/class 07/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/vary/README.md -------------------------------------------------------------------------------- /Backend/class 07/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/node_modules/vary/index.js -------------------------------------------------------------------------------- /Backend/class 07/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/package-lock.json -------------------------------------------------------------------------------- /Backend/class 07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 07/package.json -------------------------------------------------------------------------------- /Backend/class 08/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 08/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 08/app.js -------------------------------------------------------------------------------- /Backend/class 08/models/userSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 08/models/userSchema.js -------------------------------------------------------------------------------- /Backend/class 08/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 08/package-lock.json -------------------------------------------------------------------------------- /Backend/class 08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 08/package.json -------------------------------------------------------------------------------- /Backend/class 09/server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 09/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 09/server/app.js -------------------------------------------------------------------------------- /Backend/class 09/server/models/todoSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 09/server/models/todoSchema.js -------------------------------------------------------------------------------- /Backend/class 09/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 09/server/package-lock.json -------------------------------------------------------------------------------- /Backend/class 09/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 09/server/package.json -------------------------------------------------------------------------------- /Backend/class 10/client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 10/client/app.js -------------------------------------------------------------------------------- /Backend/class 10/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 10/client/index.html -------------------------------------------------------------------------------- /Backend/class 10/client/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/class 10/server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 10/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 10/server/app.js -------------------------------------------------------------------------------- /Backend/class 10/server/models/todoSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 10/server/models/todoSchema.js -------------------------------------------------------------------------------- /Backend/class 10/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 10/server/package-lock.json -------------------------------------------------------------------------------- /Backend/class 10/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 10/server/package.json -------------------------------------------------------------------------------- /Backend/class 11/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 11/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 11/app.js -------------------------------------------------------------------------------- /Backend/class 11/models/UserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 11/models/UserSchema.js -------------------------------------------------------------------------------- /Backend/class 11/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 11/package-lock.json -------------------------------------------------------------------------------- /Backend/class 11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 11/package.json -------------------------------------------------------------------------------- /Backend/class 12/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Backend/class 12/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 12/app.js -------------------------------------------------------------------------------- /Backend/class 12/models/UserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 12/models/UserSchema.js -------------------------------------------------------------------------------- /Backend/class 12/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 12/package-lock.json -------------------------------------------------------------------------------- /Backend/class 12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 12/package.json -------------------------------------------------------------------------------- /Backend/class 13/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/app.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/.bin/bcrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/.bin/bcrypt -------------------------------------------------------------------------------- /Backend/class 13/node_modules/@mongodb-js/saslprep/dist/generate-code-points.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=generate-code-points.d.ts.map -------------------------------------------------------------------------------- /Backend/class 13/node_modules/bcryptjs/umd/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/call-bind-apply-helpers/actualApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.apply; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/call-bind-apply-helpers/functionApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.apply; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/call-bind-apply-helpers/functionCall.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.call; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/depd/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/es-object-atoms/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Object; 5 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/etag/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/get-proto/Reflect.getPrototypeOf.d.ts: -------------------------------------------------------------------------------- 1 | declare const x: typeof Reflect.getPrototypeOf | null; 2 | 3 | export = x; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/gopd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/gopd/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/gopd/gOPD.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor; 2 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/gopd/gOPD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/gopd/gOPD.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/gopd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/gopd/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/hasown/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/hasown/.nycrc -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/abs.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.abs; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/floor.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.floor; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/max.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.max; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/min.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.min; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/pow.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.pow; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/round.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.round; -------------------------------------------------------------------------------- /Backend/class 13/node_modules/math-intrinsics/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | } 4 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/mpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/mpath/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/mpath/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | rules: 4 | no-unused-vars: off -------------------------------------------------------------------------------- /Backend/class 13/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/ms/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/ms/license.md -------------------------------------------------------------------------------- /Backend/class 13/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Backend/class 13/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/once/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/once/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/once/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/once/once.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Backend/class 13/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Backend/class 13/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Backend/class 13/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/qs/README.md -------------------------------------------------------------------------------- /Backend/class 13/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/send/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/sift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/sift/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Backend/class 13/node_modules/tr46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/tr46/index.js -------------------------------------------------------------------------------- /Backend/class 13/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Backend/class 13/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/node_modules/vary/index.js -------------------------------------------------------------------------------- /Backend/class 13/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/package-lock.json -------------------------------------------------------------------------------- /Backend/class 13/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/package.json -------------------------------------------------------------------------------- /Backend/class 13/schema/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 13/schema/User.js -------------------------------------------------------------------------------- /Backend/class 14/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 14/.env -------------------------------------------------------------------------------- /Backend/class 14/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env.local -------------------------------------------------------------------------------- /Backend/class 14/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 14/app.js -------------------------------------------------------------------------------- /Backend/class 14/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 14/middleware/auth.js -------------------------------------------------------------------------------- /Backend/class 14/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 14/package-lock.json -------------------------------------------------------------------------------- /Backend/class 14/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 14/package.json -------------------------------------------------------------------------------- /Backend/class 14/schema/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 14/schema/User.js -------------------------------------------------------------------------------- /Backend/class 15/backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/.env -------------------------------------------------------------------------------- /Backend/class 15/backend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env 3 | /upload -------------------------------------------------------------------------------- /Backend/class 15/backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/app.js -------------------------------------------------------------------------------- /Backend/class 15/backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/config/db.js -------------------------------------------------------------------------------- /Backend/class 15/backend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/middleware/auth.js -------------------------------------------------------------------------------- /Backend/class 15/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/package-lock.json -------------------------------------------------------------------------------- /Backend/class 15/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/package.json -------------------------------------------------------------------------------- /Backend/class 15/backend/routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/routes/admin.js -------------------------------------------------------------------------------- /Backend/class 15/backend/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/routes/auth.js -------------------------------------------------------------------------------- /Backend/class 15/backend/schema/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/schema/User.js -------------------------------------------------------------------------------- /Backend/class 15/backend/schema/otp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/backend/schema/otp.js -------------------------------------------------------------------------------- /Backend/class 15/frontend/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Backend/class 15/frontend/project/README.md -------------------------------------------------------------------------------- /Backend/class 15/frontend/project/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/class 15/frontend/project/src/utils/index.js: -------------------------------------------------------------------------------- 1 | export const BASE_URL = `http://localhost:5000/api` -------------------------------------------------------------------------------- /HTML & CSS/class 03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 03/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 03/myfirstweb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 03/myfirstweb.html -------------------------------------------------------------------------------- /HTML & CSS/class 04/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 04/about.html -------------------------------------------------------------------------------- /HTML & CSS/class 04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 04/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 05/images/Document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 05/images/Document.html -------------------------------------------------------------------------------- /HTML & CSS/class 05/images/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 05/images/car1.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 05/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 05/pages/about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 05/pages/about/about.html -------------------------------------------------------------------------------- /HTML & CSS/class 06/images/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 06/images/car1.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 06/images/car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 06/images/car2.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 06/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 07/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 08/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 09/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 10/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 10/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 10/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 11/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 11/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 11/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 12/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 12/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 12/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 13/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 13/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 13/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 14/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 14/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 14/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 15/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 15/35.png -------------------------------------------------------------------------------- /HTML & CSS/class 15/apple-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 15/apple-logo.png -------------------------------------------------------------------------------- /HTML & CSS/class 15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 15/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 15/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 15/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 16/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 16/rimac-nevera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 16/rimac-nevera.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 16/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 16/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 17/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 17/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 17/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 18/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 18/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 18/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 19/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 19/38.png -------------------------------------------------------------------------------- /HTML & CSS/class 19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 19/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 19/saylani.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 19/saylani.html -------------------------------------------------------------------------------- /HTML & CSS/class 19/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 19/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 20/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 20/style.css: -------------------------------------------------------------------------------- 1 | .parent { 2 | min-height: 50vh; 3 | } 4 | -------------------------------------------------------------------------------- /HTML & CSS/class 21/assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 21/assets/image.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 21/assets/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 21/assets/image1.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 21/assets/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 21/assets/image2.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 21/assets/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 21/assets/image3.jpg -------------------------------------------------------------------------------- /HTML & CSS/class 21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 21/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 21/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 21/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 22/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 22/olx practice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 22/olx practice/index.html -------------------------------------------------------------------------------- /HTML & CSS/class 22/olx practice/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 22/olx practice/style.css -------------------------------------------------------------------------------- /HTML & CSS/class 22/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/class 22/style.css -------------------------------------------------------------------------------- /HTML & CSS/duckett.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/HTML & CSS/duckett.pdf -------------------------------------------------------------------------------- /JAVASCRIPT/JavaScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/JavaScript.pdf -------------------------------------------------------------------------------- /JAVASCRIPT/class 01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 01/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 01/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 02/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 02/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 03/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 03/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 03/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 04/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 04/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 04/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 05/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 05/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 05/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 05/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 05/notes.txt -------------------------------------------------------------------------------- /JAVASCRIPT/class 06/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 06/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 06/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 07/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 07/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 07/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 08/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 08/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 08/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 09/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 09/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 09/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 10/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 10/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 10/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 11/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 11/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 11/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 12/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 12/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 12/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 13/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 13/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 13/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 13/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 13/style.css -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/images/car1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/images/car1 -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/images/car2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/images/car2.webp -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/images/car22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/images/car22.gif -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/images/game1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/images/game1.png -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/images/game2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/images/game2.gif -------------------------------------------------------------------------------- /JAVASCRIPT/class 14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 14/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/images/car1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/images/car1 -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/images/car2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/images/car2.webp -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/images/car22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/images/car22.gif -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/images/game1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/images/game1.png -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/images/game2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/images/game2.gif -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 15/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 15/style.css -------------------------------------------------------------------------------- /JAVASCRIPT/class 16/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 16/about.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 16/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 16/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 16/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 16/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 16/style.css -------------------------------------------------------------------------------- /JAVASCRIPT/class 17/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 17/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 17/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 18/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 18/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 18/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 19/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 19/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 19/app2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 19/app2.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 19/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 20/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 20/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 20/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 20/object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 20/object.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 20/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 20/object.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 20/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 20/style.css -------------------------------------------------------------------------------- /JAVASCRIPT/class 21/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 21/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 21/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 22/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 22/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 22/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 22/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 22/style.css -------------------------------------------------------------------------------- /JAVASCRIPT/class 23/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 23/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 23/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 23/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 23/style.css -------------------------------------------------------------------------------- /JAVASCRIPT/class 24/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 24/about.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 24/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 24/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 24/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 25/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 25/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 25/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 26/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 26/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 26/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 27/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 27/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 27/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 28/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 28/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 28/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 28/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 29/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 29/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 29/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 29/data.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 29/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 29/index.html -------------------------------------------------------------------------------- /JAVASCRIPT/class 30/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 30/app.js -------------------------------------------------------------------------------- /JAVASCRIPT/class 30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/JAVASCRIPT/class 30/index.html -------------------------------------------------------------------------------- /Quiz App Project/admin/quizList/quizList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/admin/quizList/quizList.js -------------------------------------------------------------------------------- /Quiz App Project/auth/Login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/auth/Login/login.js -------------------------------------------------------------------------------- /Quiz App Project/auth/Signup/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/auth/Signup/signup.html -------------------------------------------------------------------------------- /Quiz App Project/auth/Signup/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/auth/Signup/signup.js -------------------------------------------------------------------------------- /Quiz App Project/auth/Signup/sigup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/auth/Signup/sigup.css -------------------------------------------------------------------------------- /Quiz App Project/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/firebase.js -------------------------------------------------------------------------------- /Quiz App Project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/index.html -------------------------------------------------------------------------------- /Quiz App Project/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/style.css -------------------------------------------------------------------------------- /Quiz App Project/user/quizApp/quiz.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/user/quizApp/quiz.css -------------------------------------------------------------------------------- /Quiz App Project/user/quizApp/quizApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/user/quizApp/quizApp.html -------------------------------------------------------------------------------- /Quiz App Project/user/quizApp/quizApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/user/quizApp/quizApp.js -------------------------------------------------------------------------------- /Quiz App Project/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/Quiz App Project/utils/utils.js -------------------------------------------------------------------------------- /React/BlogApp/blogApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/.gitignore -------------------------------------------------------------------------------- /React/BlogApp/blogApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/README.md -------------------------------------------------------------------------------- /React/BlogApp/blogApp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/eslint.config.js -------------------------------------------------------------------------------- /React/BlogApp/blogApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/index.html -------------------------------------------------------------------------------- /React/BlogApp/blogApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/package-lock.json -------------------------------------------------------------------------------- /React/BlogApp/blogApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/package.json -------------------------------------------------------------------------------- /React/BlogApp/blogApp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/public/vite.svg -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/src/App.css -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/src/App.jsx -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/src/assets/react.svg -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/src/firebase.js -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/src/main.jsx -------------------------------------------------------------------------------- /React/BlogApp/blogApp/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/src/utils/index.js -------------------------------------------------------------------------------- /React/BlogApp/blogApp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/BlogApp/blogApp/vite.config.js -------------------------------------------------------------------------------- /React/class 01/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 01/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/index.html -------------------------------------------------------------------------------- /React/class 01/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/package.json -------------------------------------------------------------------------------- /React/class 01/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 01/myapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/src/App.css -------------------------------------------------------------------------------- /React/class 01/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 01/myapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 01/myapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/src/index.css -------------------------------------------------------------------------------- /React/class 01/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 01/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 01/package-lock.json -------------------------------------------------------------------------------- /React/class 02/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 02/myapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 02/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/index.html -------------------------------------------------------------------------------- /React/class 02/myapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/package-lock.json -------------------------------------------------------------------------------- /React/class 02/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/package.json -------------------------------------------------------------------------------- /React/class 02/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 02/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 02/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 02/myapp/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/src/style.css -------------------------------------------------------------------------------- /React/class 02/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 02/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 03/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 03/myapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/README.md -------------------------------------------------------------------------------- /React/class 03/myapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 03/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/index.html -------------------------------------------------------------------------------- /React/class 03/myapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/package-lock.json -------------------------------------------------------------------------------- /React/class 03/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/package.json -------------------------------------------------------------------------------- /React/class 03/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 03/myapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/src/App.css -------------------------------------------------------------------------------- /React/class 03/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 03/myapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 03/myapp/src/components/footer.module.css: -------------------------------------------------------------------------------- 1 | .container{ 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /React/class 03/myapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/src/index.css -------------------------------------------------------------------------------- /React/class 03/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 03/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 03/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 04/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/.gitignore -------------------------------------------------------------------------------- /React/class 04/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/README.md -------------------------------------------------------------------------------- /React/class 04/app/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/eslint.config.js -------------------------------------------------------------------------------- /React/class 04/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/index.html -------------------------------------------------------------------------------- /React/class 04/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/package-lock.json -------------------------------------------------------------------------------- /React/class 04/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/package.json -------------------------------------------------------------------------------- /React/class 04/app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/public/vite.svg -------------------------------------------------------------------------------- /React/class 04/app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/src/App.css -------------------------------------------------------------------------------- /React/class 04/app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/src/App.jsx -------------------------------------------------------------------------------- /React/class 04/app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 04/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/src/index.css -------------------------------------------------------------------------------- /React/class 04/app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/src/main.jsx -------------------------------------------------------------------------------- /React/class 04/app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 04/app/vite.config.js -------------------------------------------------------------------------------- /React/class 05/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/.gitignore -------------------------------------------------------------------------------- /React/class 05/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/README.md -------------------------------------------------------------------------------- /React/class 05/app/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/eslint.config.js -------------------------------------------------------------------------------- /React/class 05/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/index.html -------------------------------------------------------------------------------- /React/class 05/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/package-lock.json -------------------------------------------------------------------------------- /React/class 05/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/package.json -------------------------------------------------------------------------------- /React/class 05/app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/public/vite.svg -------------------------------------------------------------------------------- /React/class 05/app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/src/App.css -------------------------------------------------------------------------------- /React/class 05/app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/src/App.jsx -------------------------------------------------------------------------------- /React/class 05/app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 05/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/src/index.css -------------------------------------------------------------------------------- /React/class 05/app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/src/main.jsx -------------------------------------------------------------------------------- /React/class 05/app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 05/app/vite.config.js -------------------------------------------------------------------------------- /React/class 06/mya/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/.gitignore -------------------------------------------------------------------------------- /React/class 06/mya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/README.md -------------------------------------------------------------------------------- /React/class 06/mya/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/eslint.config.js -------------------------------------------------------------------------------- /React/class 06/mya/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/index.html -------------------------------------------------------------------------------- /React/class 06/mya/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/package-lock.json -------------------------------------------------------------------------------- /React/class 06/mya/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/package.json -------------------------------------------------------------------------------- /React/class 06/mya/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/public/vite.svg -------------------------------------------------------------------------------- /React/class 06/mya/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/src/App.css -------------------------------------------------------------------------------- /React/class 06/mya/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/src/App.jsx -------------------------------------------------------------------------------- /React/class 06/mya/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 06/mya/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/src/index.css -------------------------------------------------------------------------------- /React/class 06/mya/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/src/main.jsx -------------------------------------------------------------------------------- /React/class 06/mya/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 06/mya/vite.config.js -------------------------------------------------------------------------------- /React/class 07/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 07/myapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/README.md -------------------------------------------------------------------------------- /React/class 07/myapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 07/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/index.html -------------------------------------------------------------------------------- /React/class 07/myapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/package-lock.json -------------------------------------------------------------------------------- /React/class 07/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/package.json -------------------------------------------------------------------------------- /React/class 07/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 07/myapp/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 07/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 07/myapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 07/myapp/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 07/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 07/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 07/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 08/todoapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/.gitignore -------------------------------------------------------------------------------- /React/class 08/todoapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/README.md -------------------------------------------------------------------------------- /React/class 08/todoapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 08/todoapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/index.html -------------------------------------------------------------------------------- /React/class 08/todoapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/package-lock.json -------------------------------------------------------------------------------- /React/class 08/todoapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/package.json -------------------------------------------------------------------------------- /React/class 08/todoapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 08/todoapp/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 08/todoapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 08/todoapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 08/todoapp/src/components/Button/button.module.css: -------------------------------------------------------------------------------- 1 | .btn { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /React/class 08/todoapp/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 08/todoapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 08/todoapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 08/todoapp/vite.config.js -------------------------------------------------------------------------------- /React/class 09/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/.gitignore -------------------------------------------------------------------------------- /React/class 09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/README.md -------------------------------------------------------------------------------- /React/class 09/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/eslint.config.js -------------------------------------------------------------------------------- /React/class 09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/index.html -------------------------------------------------------------------------------- /React/class 09/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/package-lock.json -------------------------------------------------------------------------------- /React/class 09/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/package.json -------------------------------------------------------------------------------- /React/class 09/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/public/vite.svg -------------------------------------------------------------------------------- /React/class 09/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 09/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/src/App.jsx -------------------------------------------------------------------------------- /React/class 09/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 09/src/components/Button/button.module.css: -------------------------------------------------------------------------------- 1 | .btn { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /React/class 09/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 09/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/src/main.jsx -------------------------------------------------------------------------------- /React/class 09/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 09/vite.config.js -------------------------------------------------------------------------------- /React/class 10/weather-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/.gitignore -------------------------------------------------------------------------------- /React/class 10/weather-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/README.md -------------------------------------------------------------------------------- /React/class 10/weather-app/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/eslint.config.js -------------------------------------------------------------------------------- /React/class 10/weather-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/index.html -------------------------------------------------------------------------------- /React/class 10/weather-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/package.json -------------------------------------------------------------------------------- /React/class 10/weather-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/public/vite.svg -------------------------------------------------------------------------------- /React/class 10/weather-app/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 10/weather-app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/src/App.jsx -------------------------------------------------------------------------------- /React/class 10/weather-app/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 10/weather-app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/src/main.jsx -------------------------------------------------------------------------------- /React/class 10/weather-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 10/weather-app/vite.config.js -------------------------------------------------------------------------------- /React/class 11/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 11/myapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/README.md -------------------------------------------------------------------------------- /React/class 11/myapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 11/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/index.html -------------------------------------------------------------------------------- /React/class 11/myapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/package-lock.json -------------------------------------------------------------------------------- /React/class 11/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/package.json -------------------------------------------------------------------------------- /React/class 11/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 11/myapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/src/App.css -------------------------------------------------------------------------------- /React/class 11/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 11/myapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 11/myapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/src/index.css -------------------------------------------------------------------------------- /React/class 11/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 11/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 11/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 12/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 12/myapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/README.md -------------------------------------------------------------------------------- /React/class 12/myapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 12/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/index.html -------------------------------------------------------------------------------- /React/class 12/myapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/package-lock.json -------------------------------------------------------------------------------- /React/class 12/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/package.json -------------------------------------------------------------------------------- /React/class 12/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 12/myapp/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 12/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 12/myapp/src/app.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/app.module.css -------------------------------------------------------------------------------- /React/class 12/myapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 12/myapp/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 12/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 12/myapp/src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/pages/About.jsx -------------------------------------------------------------------------------- /React/class 12/myapp/src/pages/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/pages/Contact.jsx -------------------------------------------------------------------------------- /React/class 12/myapp/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/pages/Home.jsx -------------------------------------------------------------------------------- /React/class 12/myapp/src/pages/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/src/pages/List.jsx -------------------------------------------------------------------------------- /React/class 12/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 12/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 13/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/.gitignore -------------------------------------------------------------------------------- /React/class 13/myapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/README.md -------------------------------------------------------------------------------- /React/class 13/myapp/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/eslint.config.js -------------------------------------------------------------------------------- /React/class 13/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/index.html -------------------------------------------------------------------------------- /React/class 13/myapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/package-lock.json -------------------------------------------------------------------------------- /React/class 13/myapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/package.json -------------------------------------------------------------------------------- /React/class 13/myapp/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/public/vite.svg -------------------------------------------------------------------------------- /React/class 13/myapp/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 13/myapp/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/src/App.jsx -------------------------------------------------------------------------------- /React/class 13/myapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 13/myapp/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/src/firebase.js -------------------------------------------------------------------------------- /React/class 13/myapp/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 13/myapp/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/src/main.jsx -------------------------------------------------------------------------------- /React/class 13/myapp/src/pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/src/pages/HomePage.jsx -------------------------------------------------------------------------------- /React/class 13/myapp/src/pages/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/src/pages/NotFound.jsx -------------------------------------------------------------------------------- /React/class 13/myapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 13/myapp/vite.config.js -------------------------------------------------------------------------------- /React/class 14/react-form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/.gitignore -------------------------------------------------------------------------------- /React/class 14/react-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/README.md -------------------------------------------------------------------------------- /React/class 14/react-form/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/eslint.config.js -------------------------------------------------------------------------------- /React/class 14/react-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/index.html -------------------------------------------------------------------------------- /React/class 14/react-form/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/package-lock.json -------------------------------------------------------------------------------- /React/class 14/react-form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/package.json -------------------------------------------------------------------------------- /React/class 14/react-form/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/public/vite.svg -------------------------------------------------------------------------------- /React/class 14/react-form/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 14/react-form/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/src/App.jsx -------------------------------------------------------------------------------- /React/class 14/react-form/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 14/react-form/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/src/main.jsx -------------------------------------------------------------------------------- /React/class 14/react-form/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 14/react-form/vite.config.js -------------------------------------------------------------------------------- /React/class 15/redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/.gitignore -------------------------------------------------------------------------------- /React/class 15/redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/README.md -------------------------------------------------------------------------------- /React/class 15/redux/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/eslint.config.js -------------------------------------------------------------------------------- /React/class 15/redux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/index.html -------------------------------------------------------------------------------- /React/class 15/redux/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/package-lock.json -------------------------------------------------------------------------------- /React/class 15/redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/package.json -------------------------------------------------------------------------------- /React/class 15/redux/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/public/vite.svg -------------------------------------------------------------------------------- /React/class 15/redux/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 15/redux/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/src/App.jsx -------------------------------------------------------------------------------- /React/class 15/redux/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/src/assets/react.svg -------------------------------------------------------------------------------- /React/class 15/redux/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 15/redux/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/src/main.jsx -------------------------------------------------------------------------------- /React/class 15/redux/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/src/redux/store.js -------------------------------------------------------------------------------- /React/class 15/redux/src/store/store.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 15/redux/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 15/redux/vite.config.js -------------------------------------------------------------------------------- /React/class 16/react-redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/.gitignore -------------------------------------------------------------------------------- /React/class 16/react-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/README.md -------------------------------------------------------------------------------- /React/class 16/react-redux/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/eslint.config.js -------------------------------------------------------------------------------- /React/class 16/react-redux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/index.html -------------------------------------------------------------------------------- /React/class 16/react-redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/package.json -------------------------------------------------------------------------------- /React/class 16/react-redux/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/public/vite.svg -------------------------------------------------------------------------------- /React/class 16/react-redux/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 16/react-redux/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/src/App.jsx -------------------------------------------------------------------------------- /React/class 16/react-redux/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /React/class 16/react-redux/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/src/main.jsx -------------------------------------------------------------------------------- /React/class 16/react-redux/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/React/class 16/react-redux/vite.config.js -------------------------------------------------------------------------------- /firebase/class 01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 01/app.js -------------------------------------------------------------------------------- /firebase/class 01/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 01/firebase.js -------------------------------------------------------------------------------- /firebase/class 01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 01/index.html -------------------------------------------------------------------------------- /firebase/class 02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 02/app.js -------------------------------------------------------------------------------- /firebase/class 02/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 02/firebase.js -------------------------------------------------------------------------------- /firebase/class 02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 02/index.html -------------------------------------------------------------------------------- /firebase/class 02/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 02/sign.html -------------------------------------------------------------------------------- /firebase/class 03/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 03/app.js -------------------------------------------------------------------------------- /firebase/class 03/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 03/dashboard.html -------------------------------------------------------------------------------- /firebase/class 03/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 03/firebase.js -------------------------------------------------------------------------------- /firebase/class 03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 03/index.html -------------------------------------------------------------------------------- /firebase/class 03/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 03/signup.html -------------------------------------------------------------------------------- /firebase/class 03/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 03/signup.js -------------------------------------------------------------------------------- /firebase/class 04/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/app.js -------------------------------------------------------------------------------- /firebase/class 04/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/dashboard.html -------------------------------------------------------------------------------- /firebase/class 04/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/dashboard.js -------------------------------------------------------------------------------- /firebase/class 04/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/firebase.js -------------------------------------------------------------------------------- /firebase/class 04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/index.html -------------------------------------------------------------------------------- /firebase/class 04/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/signup.html -------------------------------------------------------------------------------- /firebase/class 04/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/firebase/class 04/signup.js -------------------------------------------------------------------------------- /storage/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/storage/app.js -------------------------------------------------------------------------------- /storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/storage/index.html -------------------------------------------------------------------------------- /supabase/Class 01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/Class 01/app.js -------------------------------------------------------------------------------- /supabase/Class 01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/Class 01/index.html -------------------------------------------------------------------------------- /supabase/Class 01/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/Class 01/login.html -------------------------------------------------------------------------------- /supabase/Class 01/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/Class 01/login.js -------------------------------------------------------------------------------- /supabase/Class 01/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/Class 01/style.css -------------------------------------------------------------------------------- /supabase/Class 01/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/Class 01/styles.css -------------------------------------------------------------------------------- /supabase/class 02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/class 02/app.js -------------------------------------------------------------------------------- /supabase/class 02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaffarAman/SMIT-batch12-MT/HEAD/supabase/class 02/index.html --------------------------------------------------------------------------------