| 
									
										
										
										
											2017-09-22 19:51:03 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-02-03 08:10:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // returns the script path for the current platform
 | 
					
						
							|  |  |  | module.exports = function platformScriptPath(path) { | 
					
						
							|  |  |  |   const os = require('os'); | 
					
						
							|  |  |  |   return /^win/.test(os.platform()) ? `${path}.cmd` : path; | 
					
						
							|  |  |  | }; |