Skip to content

Commit

Permalink
add semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
RaisinTen committed Dec 25, 2020
1 parent 4f357fe commit f03f433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

let napiVersion = Number(process.versions.napi)
let napiVersion = Number(process.versions.napi);
if (process.env.NAPI_VERSION) {
// we need this so that we don't try run tests that rely
// on methods that are not available in the NAPI_VERSION
Expand All @@ -9,7 +9,7 @@ if (process.env.NAPI_VERSION) {
}
console.log('napiVersion:' + napiVersion);

const majorNodeVersion = process.versions.node.split('.')[0]
const majorNodeVersion = process.versions.node.split('.')[0];

if (typeof global.gc !== 'function') {
// Construct the correct (version-dependent) command-line args.
Expand Down

0 comments on commit f03f433

Please sign in to comment.