Skip to content

Commit

Permalink
Use const and let instead of var (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicdoe authored and sibiraj-s committed Aug 18, 2019
1 parent 8b88365 commit 7420381
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use strict'

var assert = require('assert')
var clearModule = require('clear-module')
const assert = require('assert')
const clearModule = require('clear-module')

process.env.CI = 'true'

var isCI = require('./')
let isCI = require('./')
assert(isCI)

delete process.env.CI
Expand Down

0 comments on commit 7420381

Please sign in to comment.