mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-04 08:09:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
	
		
			215 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
	
		
			215 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								var test = require('tape');
							 | 
						||
| 
								 | 
							
								var defined = require('../');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								test('falsy', function (t) {
							 | 
						||
| 
								 | 
							
								    t.plan(1);
							 | 
						||
| 
								 | 
							
								    var opts = { y : false, w : 4 };
							 | 
						||
| 
								 | 
							
								    var x = defined(opts.x, opts.y, opts.w, 8);
							 | 
						||
| 
								 | 
							
								    t.equal(x, false);
							 | 
						||
| 
								 | 
							
								});
							 |