Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var IsArray = require('./IsArray');
|
|
|
|
var isByteValue = require('../helpers/isByteValue');
|
|
|
|
// https://262.ecma-international.org/12.0/#sec-bytelistbitwiseop
|
|
|
|
module.exports = function ByteListBitwiseOp(op, xBytes, yBytes) {
|
|
if (op !== '&' && op !== '^' && op !== '|') {
|
|
throw new $TypeError('Assertion failed: `op` must be `&`, `^`, or `|`');
|
|
}
|
|
if (!IsArray(xBytes) || !IsArray(yBytes) || xBytes.length !== yBytes.length) {
|
|
throw new $TypeError('Assertion failed: `xBytes` and `yBytes` must be same-length sequences of byte values (an integer 0-255, inclusive)');
|
|
}
|
|
|
|
var result = [];
|
|
|
|
for (var i = 0; i < xBytes.length; i += 1) {
|
|
var xByte = xBytes[i];
|
|
var yByte = yBytes[i];
|
|
if (!isByteValue(xByte) || !isByteValue(yByte)) {
|
|
throw new $TypeError('Assertion failed: `xBytes` and `yBytes` must be same-length sequences of byte values (an integer 0-255, inclusive)');
|
|
}
|
|
var resultByte;
|
|
if (op === '&') {
|
|
resultByte = xByte & yByte;
|
|
} else if (op === '^') {
|
|
resultByte = xByte ^ yByte;
|
|
} else {
|
|
resultByte = xByte | yByte;
|
|
}
|
|
result[result.length] = resultByte;
|
|
}
|
|
|
|
return result;
|
|
};
|