Skip to content

Commit

Permalink
tell jshint to be quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
aheckmann committed Dec 31, 2014
1 parent bda5c44 commit 75e67b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ module.exports.timeContext = function (opts) {
};

function time (label) {
/*jshint validthis:true */
var startTimes = this._timeContextStartTimes;

if (startTimes[label]) {
Expand All @@ -233,6 +234,7 @@ module.exports.timeContext = function (opts) {
}

function timeEnd (label) {
/*jshint validthis:true */
var startTimes = this._timeContextStartTimes;
var startTime = startTimes[label];

Expand Down

0 comments on commit 75e67b3

Please sign in to comment.