/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/regexp-record.js (850B)
'use strict'; var hasOwn = require('hasown'); var isInteger = require('../isInteger'); module.exports = function isRegExpRecord(value) { return !!value && typeof value === 'object' && hasOwn(value, '[[IgnoreCase]]') && typeof value['[[IgnoreCase]]'] === 'boolean' && hasOwn(value, '[[Multiline]]') && typeof value['[[Multiline]]'] === 'boolean' && hasOwn(value, '[[DotAll]]') && typeof value['[[DotAll]]'] === 'boolean' && hasOwn(value, '[[Unicode]]') && typeof value['[[Unicode]]'] === 'boolean' && hasOwn(value, '[[CapturingGroupsCount]]') && typeof value['[[CapturingGroupsCount]]'] === 'number' && isInteger(value['[[CapturingGroupsCount]]']) && value['[[CapturingGroupsCount]]'] >= 0 && (!hasOwn(value, '[[UnicodeSets]]') || typeof value['[[UnicodeSets]]'] === 'boolean'); // optional since it was added later };