Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
		
							
								
								
									
										12
									
								
								install/config-ui/node_modules/es-abstract/2023/BinaryXor.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								install/config-ui/node_modules/es-abstract/2023/BinaryXor.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| var $TypeError = require('es-errors/type'); | ||||
|  | ||||
| // https://262.ecma-international.org/11.0/#sec-binaryxor | ||||
|  | ||||
| module.exports = function BinaryXor(x, y) { | ||||
| 	if ((x !== 0 && x !== 1) || (y !== 0 && y !== 1)) { | ||||
| 		throw new $TypeError('Assertion failed: `x` and `y` must be either 0 or 1'); | ||||
| 	} | ||||
| 	return x ^ y; | ||||
| }; | ||||
		Reference in New Issue
	
	Block a user
	 anthonyrawlins
					anthonyrawlins