File tree 2 files changed +1
-3
lines changed 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ file.findup = require('findup-sync');
16
16
var YAML = require ( 'js-yaml' ) ;
17
17
var rimraf = require ( 'rimraf' ) ;
18
18
var iconv = require ( 'iconv-lite' ) ;
19
- var pathIsAbsolute = require ( 'path-is-absolute' ) ;
20
19
var mkdirp = require ( 'mkdirp' ) . sync ;
21
20
22
21
// Windows?
@@ -407,7 +406,7 @@ file.isFile = function() {
407
406
// Is a given file path absolute?
408
407
file . isPathAbsolute = function ( ) {
409
408
var filepath = path . join . apply ( path , arguments ) ;
410
- return pathIsAbsolute ( filepath ) ;
409
+ return path . isAbsolute ( filepath ) ;
411
410
} ;
412
411
413
412
// Do all the specified paths refer to the same path?
Original file line number Diff line number Diff line change 51
51
"minimatch" : " ~3.0.4" ,
52
52
"mkdirp" : " ~1.0.4" ,
53
53
"nopt" : " ~3.0.6" ,
54
- "path-is-absolute" : " ~2.0.0" ,
55
54
"rimraf" : " ~3.0.2"
56
55
},
57
56
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments