Remove lint warnings

This commit is contained in:
Kevin Sawicki 2016-05-23 11:31:56 -07:00
parent fe0ec67623
commit 6ac0151e65

View file

@ -20,7 +20,9 @@ Module._nodeModulePaths = function (from) {
const paths = []
const parts = from.split(splitRe)
for (let tip = i = parts.length - 1; i >= 0; tip = i += -1) {
let tip
let i
for (tip = i = parts.length - 1; i >= 0; tip = i += -1) {
const part = parts[tip]
if (part === 'node_modules') {
continue