async functions return promises silly

This commit is contained in:
RealBeepMcJeep 2023-08-30 07:49:26 -07:00
parent 37e20f6fc5
commit 20f807c5c9
1 changed files with 1 additions and 1 deletions

View File

@ -4963,7 +4963,7 @@ async function getImageBuffers(zipFilePath) {
/** /**
* This function extracts the extension information from the manifest file. * This function extracts the extension information from the manifest file.
* @param {string} extensionPath - The path of the extension folder * @param {string} extensionPath - The path of the extension folder
* @returns {Object} - Returns the manifest data as an object * @returns {Promise<Object>} - Returns the manifest data as an object
*/ */
async function getManifest(extensionPath) { async function getManifest(extensionPath) {
const manifestPath = path.join(extensionPath, 'manifest.json'); const manifestPath = path.join(extensionPath, 'manifest.json');