add hw2
This commit is contained in:
		
							
								
								
									
										18
									
								
								node_modules/escalade/sync/index.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								node_modules/escalade/sync/index.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| const { dirname, resolve } = require('path'); | ||||
| const { readdirSync, statSync } = require('fs'); | ||||
|  | ||||
| module.exports = function (start, callback) { | ||||
| 	let dir = resolve('.', start); | ||||
| 	let tmp, stats = statSync(dir); | ||||
|  | ||||
| 	if (!stats.isDirectory()) { | ||||
| 		dir = dirname(dir); | ||||
| 	} | ||||
|  | ||||
| 	while (true) { | ||||
| 		tmp = callback(dir, readdirSync(dir)); | ||||
| 		if (tmp) return resolve(dir, tmp); | ||||
| 		dir = dirname(tmp = dir); | ||||
| 		if (tmp === dir) break; | ||||
| 	} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik