/home/techb158/balavpn.abdallabala.com/node_modules/es-abstract/helpers/records
NameSizeModeActions
async-generator-request-record.js4070666editdlrm
data-view-with-buffer-witness-record.js5350666editdlrm
iterator-record-2023.js2120666editdlrm
iterator-record.js2980666editdlrm
match-record.js6520666editdlrm
promise-capability-record.js4950666editdlrm
property-descriptor.js8680666editdlrm
regexp-record.js8500666editdlrm
set-record.js5880666editdlrm
typed-array-with-buffer-witness-record.js5430666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/es-abstract/helpers/records/match-record.js (652B)
'use strict'; var hasOwn = require('hasown'); var GetIntrinsic = require('get-intrinsic'); var $parseInt = GetIntrinsic('%parseInt%'); // https://262.ecma-international.org/13.0/#sec-match-records module.exports = function isMatchRecord(record) { return ( !!record && typeof record === 'object' && hasOwn(record, '[[StartIndex]]') && hasOwn(record, '[[EndIndex]]') && record['[[StartIndex]]'] >= 0 && record['[[EndIndex]]'] >= record['[[StartIndex]]'] && String($parseInt(record['[[StartIndex]]'], 10)) === String(record['[[StartIndex]]']) && String($parseInt(record['[[EndIndex]]'], 10)) === String(record['[[EndIndex]]']) ); };