Files
tekelanew_acs/acs/nladmin-ui/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js

22 lines
516 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
'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
};