mirror of
				https://kkgithub.com/actions/setup-python.git
				synced 2025-11-04 12:44:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			599 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			599 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
//      
 | 
						|
'use strict';
 | 
						|
 | 
						|
const path = require('path');
 | 
						|
const isDirectory = require('is-directory');
 | 
						|
 | 
						|
function getDirectory(filepath        )                  {
 | 
						|
  return new Promise((resolve, reject) => {
 | 
						|
    return isDirectory(filepath, (err, filepathIsDirectory) => {
 | 
						|
      if (err) {
 | 
						|
        return reject(err);
 | 
						|
      }
 | 
						|
      return resolve(filepathIsDirectory ? filepath : path.dirname(filepath));
 | 
						|
    });
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
getDirectory.sync = function getDirectorySync(filepath        )         {
 | 
						|
  return isDirectory.sync(filepath) ? filepath : path.dirname(filepath);
 | 
						|
};
 | 
						|
 | 
						|
module.exports = getDirectory;
 |