Files
tekelanew_acs/acs/nladmin-ui/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js
2024-12-05 09:33:18 +08:00

22 lines
516 B
JavaScript

'use strict';
var Get = require('./Get');
var ToIndex = require('./ToIndex');
var Type = require('./Type');
// https://262.ecma-international.org/15.0/#sec-getarraybuffermaxbytelengthoption
module.exports = function GetArrayBufferMaxByteLengthOption(options) {
if (Type(options) !== 'Object') {
return 'EMPTY'; // step 1
}
var maxByteLength = Get(options, 'maxByteLength'); // step 2
if (typeof maxByteLength === 'undefined') {
return 'EMPTY'; // step 3
}
return ToIndex(maxByteLength); // step 4
};