diff --git a/NOTICE b/NOTICE index 30596e20bd..f2cc3162cc 100644 --- a/NOTICE +++ b/NOTICE @@ -59,6 +59,7 @@ under the licensing terms detailed in LICENSE: * Matt Johnson-Pint * Fabián Heredia Montiel * Jonas Minnberg +* Omar Aziz Portions of this software are derived from third-party works licensed under the following terms: diff --git a/bin/asc.js b/bin/asc.js index 8924e92340..274723e106 100755 --- a/bin/asc.js +++ b/bin/asc.js @@ -1,15 +1,11 @@ #!/usr/bin/env node +import process from "node:process"; const [ nodePath, thisPath, ...args ] = process.argv; const nodeArgs = process.execArgv; const hasSourceMaps = nodeArgs.includes("--enable-source-maps"); const posCustomArgs = args.indexOf("--"); -const isDeno = typeof Deno !== "undefined"; - -if (isDeno) { - process.on = function() { /* suppress 'not implemented' message */ }; -} if ((!hasSourceMaps || ~posCustomArgs) && !isDeno) { if (!hasSourceMaps) {