Skip to content

Commit

Permalink
Fix deprecated default program import with named import (#39932)
Browse files Browse the repository at this point in the history
  • Loading branch information
aav7fl committed Apr 1, 2024
1 parent 065a5a9 commit f2bc788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator/js/nodejs/index.js
Expand Up @@ -5,7 +5,7 @@ const fs = require('fs');
const http = require('http');
const https = require('https');
const path = require('path');
const program = require('commander');
const { program } = require('commander');
const Promise = require('promise');
const util = require('util');
const vm = require('vm');
Expand Down

0 comments on commit f2bc788

Please sign in to comment.