You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					15 lines
				
				308 B
			
		
		
			
		
	
	
					15 lines
				
				308 B
			| 
								 
											3 years ago
										 
									 | 
							
								define(['./isFunction'], function (isFunction) {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  // Return a sorted list of the function names available on the object.
							 | 
						||
| 
								 | 
							
								  function functions(obj) {
							 | 
						||
| 
								 | 
							
								    var names = [];
							 | 
						||
| 
								 | 
							
								    for (var key in obj) {
							 | 
						||
| 
								 | 
							
								      if (isFunction(obj[key])) names.push(key);
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								    return names.sort();
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  return functions;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								});
							 |