File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 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');
1616var YAML = require ( 'js-yaml' ) ;
1717var rimraf = require ( 'rimraf' ) ;
1818var iconv = require ( 'iconv-lite' ) ;
19- var pathIsAbsolute = require ( 'path-is-absolute' ) ;
2019var mkdirp = require ( 'mkdirp' ) . sync ;
2120
2221// Windows?
@@ -407,7 +406,7 @@ file.isFile = function() {
407406// Is a given file path absolute?
408407file . isPathAbsolute = function ( ) {
409408 var filepath = path . join . apply ( path , arguments ) ;
410- return pathIsAbsolute ( filepath ) ;
409+ return path . isAbsolute ( filepath ) ;
411410} ;
412411
413412// Do all the specified paths refer to the same path?
Original file line number Diff line number Diff line change 5151 "minimatch" : " ~3.0.4" ,
5252 "mkdirp" : " ~1.0.4" ,
5353 "nopt" : " ~3.0.6" ,
54- "path-is-absolute" : " ~2.0.0" ,
5554 "rimraf" : " ~3.0.2"
5655 },
5756 "devDependencies" : {
You can’t perform that action at this time.
0 commit comments