webhook-action/node_modules/es-abstract/2020/BinaryAnd.js

13 lines
316 B
JavaScript
Raw Normal View History

'use strict';
2024-03-28 02:00:41 +00:00
var $TypeError = require('es-errors/type');
2022-11-10 10:43:16 +00:00
// https://262.ecma-international.org/11.0/#sec-binaryand
module.exports = function BinaryAnd(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;
};