Changeset 0c6b92a for imaps-frontend/node_modules/es-abstract/2021
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- Location:
- imaps-frontend/node_modules/es-abstract/2021
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-abstract/2021/AsyncIteratorClose.js
rd565449 r0c6b92a 12 12 var Type = require('./Type'); 13 13 14 var isIteratorRecord = require('../helpers/records/iterator-record ');14 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 15 15 16 16 var callBound = require('call-bind/callBound'); -
imaps-frontend/node_modules/es-abstract/2021/CompletionRecord.js
rd565449 r0c6b92a 31 31 var value = SLOT.get(this, '[[Value]]'); 32 32 33 if (type === 'normal') {34 return value;35 }36 33 if (type === 'throw') { 37 34 throw value; 38 35 } 39 throw new $SyntaxError('Completion Record is not of type "normal" or "throw": other types not supported');36 return value; 40 37 }; 41 38 -
imaps-frontend/node_modules/es-abstract/2021/CreateAsyncFromSyncIterator.js
rd565449 r0c6b92a 16 16 var Type = require('./Type'); 17 17 18 var isIteratorRecord = require('../helpers/records/iterator-record ');18 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 19 19 20 20 var SLOT = require('internal-slot'); -
imaps-frontend/node_modules/es-abstract/2021/UTF16SurrogatePairToCodePoint.js
rd565449 r0c6b92a 9 9 var isTrailingSurrogate = require('../helpers/isTrailingSurrogate'); 10 10 11 // https:// tc39.es/ecma262/2020/#sec-utf16decodesurrogatepair11 // https://262.ecma-international.org/12.0/#sec-utf16decodesurrogatepair 12 12 13 13 module.exports = function UTF16SurrogatePairToCodePoint(lead, trail) {
Note:
See TracChangeset
for help on using the changeset viewer.