From d8d70543207b08902ac66a403251377021a2cd9e Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Sun, 10 Nov 2024 11:33:09 +0100 Subject: [PATCH] Fix typo in Closure extern Prevents Closure compiler from mangling `require('os').tmpdir()`. --- third_party/closure-compiler/node-externs/os.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/closure-compiler/node-externs/os.js b/third_party/closure-compiler/node-externs/os.js index 71cfa0e1aa8be..c0cdeff95d171 100644 --- a/third_party/closure-compiler/node-externs/os.js +++ b/third_party/closure-compiler/node-externs/os.js @@ -33,7 +33,7 @@ var os = {}; * @return {string} * @nosideeffects */ -os.tmdDir = function() {}; +os.tmpdir = function() {}; /** * @return {string}