Type Checking

This commit is contained in:
Tben 2023-08-07 05:12:14 +01:00
parent 4da665efd4
commit 7ed30ff720
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "datasquirel",
"version": "1.2.6",
"version": "1.2.7",
"description": "Cloud-based SQL data management tool",
"main": "index.js",
"scripts": {

View File

@ -41,6 +41,7 @@ module.exports = function ({ request }) {
/** @type {string[]} */
const cookieSplitArray = cookieString.split(";");
/** @type {*} */
let cookieObject = {};
cookieSplitArray.forEach((keyValueString) => {