| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-28 13:55:01 -07:00
										 |  |  | function file2moduleName(filePath) { | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |   return filePath | 
					
						
							|  |  |  |       .replace(/\\/g, '/') | 
					
						
							|  |  |  |       // module name should be relative to `modules` and `tools` folder
 | 
					
						
							|  |  |  |       .replace(/.*\/modules\//, '') | 
					
						
							|  |  |  |       //  and 'dist' folder
 | 
					
						
							|  |  |  |       .replace(/.*\/dist\/js\/dev\/es5\//, '') | 
					
						
							|  |  |  |       // module name should not include `lib`, `web` folders
 | 
					
						
							|  |  |  |       // as they are wrapper packages for dart
 | 
					
						
							|  |  |  |       .replace(/\/web\//, '/') | 
					
						
							|  |  |  |       .replace(/\/lib\//, '/') | 
					
						
							|  |  |  |       // module name should not have a suffix
 | 
					
						
							|  |  |  |       .replace(/\.\w*$/, ''); | 
					
						
							| 
									
										
										
										
											2014-09-28 13:55:01 -07:00
										 |  |  | } | 
					
						
							|  |  |  | if (typeof module !== 'undefined') { | 
					
						
							|  |  |  |   module.exports = file2moduleName; | 
					
						
							| 
									
										
										
										
											2014-10-06 17:35:00 -07:00
										 |  |  | } |