Skip to content

Commit

Permalink
WIP: Remove node version check
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Jan 9, 2018
1 parent 2002550 commit 6a901d3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

'use strict'

var versionStr = process.version.match(/v(\d+).*/)[1]
var majorVersion = Number(versionStr)
if (majorVersion >= 4 && majorVersion < 8) {
require('trace')
require('clarify')
console.log('Trace and clarify activated')
}
// var versionStr = process.version.match(/v(\d+).*/)[1]
// var majorVersion = Number(versionStr)
// if (majorVersion >= 4 && majorVersion < 8) {
require('trace')
require('clarify')
console.log('Trace and clarify activated')
// }

0 comments on commit 6a901d3

Please sign in to comment.