Fix comment

This commit is contained in:
Louis Lam 2025-06-15 19:43:24 +08:00
parent 4ae5ecff3d
commit e668c8b261

View file

@ -1100,8 +1100,8 @@ module.exports.axiosAbortSignal = (timeoutMs) => {
/**
* Async version of fs.existsSync
* @param path
* @returns {Promise<unknown>}
* @param {PathLike} path File path
* @returns {Promise<boolean>} True if file exists, false otherwise
*/
function fsExists(path) {
return new Promise(function (resolve, reject) {