From 10914017606682e24a80206169705ea053b4da13 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 05:19:04 +0000 Subject: [PATCH] fix(MESHCENT-005-2): util-descriptors.js exports fewer functions in the not-supported stub than the full implementation --- modules/util-descriptors.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/util-descriptors.js b/modules/util-descriptors.js index ddf3174c3..b72d15bba 100644 --- a/modules/util-descriptors.js +++ b/modules/util-descriptors.js @@ -222,11 +222,11 @@ switch (process.platform) break; default: // For other platforms, we will return an error - module.exports = { getOpenDescriptors: invalid, closeDescriptors: invalid }; + module.exports = { getOpenDescriptors: invalid, closeDescriptors: invalid, _execv: invalid, libc: null }; break; } if (process.platform == 'win32') { module.exports.getProcessHandle = win_getProcessHandle; -} \ No newline at end of file +}