Skip to content

Commit

Permalink
stick to var rather than const for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
bholloway committed Aug 29, 2018
1 parent b2c8bf2 commit ea71b04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/process/debug-message.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const PACKAGE_NAME = require('../../package.json').name,
PADDING = (new Array(11)).join(' ');
var PACKAGE_NAME = require('../../package.json').name,
PADDING = (new Array(11)).join(' ');

/**
* Format a debug message
Expand Down
2 changes: 1 addition & 1 deletion lib/process/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var debugMessage = require('./debug-message'),
encodeSourcesWith = require('./encode-sources-with'),
testCodec = require('./test-codec');

const CODECS = require('../../codec');
var CODECS = require('../../codec');

/**
* Process the given source-map per the given options.
Expand Down

0 comments on commit ea71b04

Please sign in to comment.