 c177363a19
			
		
	
	c177363a19
	
	
	
		
			
			🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			323 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			323 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var $BooleanValueOf = require('call-bound')('Boolean.prototype.valueOf');
 | |
| 
 | |
| // https://262.ecma-international.org/6.0/#sec-properties-of-the-boolean-prototype-object
 | |
| 
 | |
| module.exports = function thisBooleanValue(value) {
 | |
| 	if (typeof value === 'boolean') {
 | |
| 		return value;
 | |
| 	}
 | |
| 
 | |
| 	return $BooleanValueOf(value);
 | |
| };
 |