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.
		
		
		
		
		
			
		
			
				
					13 lines
				
				291 B
			
		
		
			
		
	
	
					13 lines
				
				291 B
			| 
								 
											3 years ago
										 
									 | 
							
								var isFunction = require('./isFunction.js');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// 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();
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = functions;
							 |