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:
16
install/config-ui/node_modules/es-abstract/2020/IsNoTearConfiguration.js
generated
vendored
Normal file
16
install/config-ui/node_modules/es-abstract/2020/IsNoTearConfiguration.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
var IsUnclampedIntegerElementType = require('./IsUnclampedIntegerElementType');
|
||||
var IsBigIntElementType = require('./IsBigIntElementType');
|
||||
|
||||
// https://262.ecma-international.org/11.0/#sec-isnotearconfiguration
|
||||
|
||||
module.exports = function IsNoTearConfiguration(type, order) {
|
||||
if (IsUnclampedIntegerElementType(type)) {
|
||||
return true;
|
||||
}
|
||||
if (IsBigIntElementType(type) && order !== 'Init' && order !== 'Unordered') {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
Reference in New Issue
Block a user