Changeset 0c6b92a for imaps-frontend/node_modules/es-abstract/2024
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- Location:
- imaps-frontend/node_modules/es-abstract/2024
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-abstract/2024/AddValueToKeyedGroup.js
rd565449 r0c6b92a 21 21 }; 22 22 23 // https:// tc39.es/ecma262/#sec-add-value-to-keyed-group23 // https://262.ecma-international.org/15.0/#sec-add-value-to-keyed-group 24 24 25 25 module.exports = function AddValueToKeyedGroup(groups, key, value) { -
imaps-frontend/node_modules/es-abstract/2024/ArrayBufferByteLength.js
rd565449 r0c6b92a 3 3 var $TypeError = require('es-errors/type'); 4 4 5 // https:// tc39.es/ecma262/#sec-arraybufferbytelength5 // https://262.ecma-international.org/15.0/#sec-arraybufferbytelength 6 6 7 7 var IsDetachedBuffer = require('./IsDetachedBuffer'); -
imaps-frontend/node_modules/es-abstract/2024/AsyncIteratorClose.js
rd565449 r0c6b92a 18 18 var $then = callBound('Promise.prototype.then', true); 19 19 20 // https://262.ecma-international.org/1 2.0/#sec-asynciteratorclose20 // https://262.ecma-international.org/15.0/#sec-asynciteratorclose 21 21 22 22 module.exports = function AsyncIteratorClose(iteratorRecord, completion) { -
imaps-frontend/node_modules/es-abstract/2024/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/2024/CreateAsyncFromSyncIterator.js
rd565449 r0c6b92a 116 116 }; 117 117 118 // https://262.ecma-international.org/1 4.0/#sec-createasyncfromsynciterator118 // https://262.ecma-international.org/15.0/#sec-createasyncfromsynciterator 119 119 120 120 module.exports = function CreateAsyncFromSyncIterator(syncIteratorRecord) { -
imaps-frontend/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js
rd565449 r0c6b92a 5 5 var Type = require('./Type'); 6 6 7 // https:// tc39.es/ecma262/#sec-getarraybuffermaxbytelengthoption7 // https://262.ecma-international.org/15.0/#sec-getarraybuffermaxbytelengthoption 8 8 9 9 module.exports = function GetArrayBufferMaxByteLengthOption(options) { -
imaps-frontend/node_modules/es-abstract/2024/GroupBy.js
rd565449 r0c6b92a 17 17 var maxSafeInteger = require('../helpers/maxSafeInteger'); 18 18 19 // https:// tc39.es/ecma262/#sec-groupby19 // https://262.ecma-international.org/15.0/#sec-groupby 20 20 21 21 module.exports = function GroupBy(items, callbackfn, keyCoercion) { -
imaps-frontend/node_modules/es-abstract/2024/IsTypedArrayOutOfBounds.js
rd565449 r0c6b92a 12 12 var typedArrayLength = require('typed-array-length'); 13 13 14 // https:// tc39.es/ecma262/#sec-istypedarrayoutofbounds14 // https://262.ecma-international.org/15.0/#sec-istypedarrayoutofbounds 15 15 16 16 module.exports = function IsTypedArrayOutOfBounds(taRecord) { -
imaps-frontend/node_modules/es-abstract/2024/IteratorClose.js
rd565449 r0c6b92a 11 11 var isIteratorRecord = require('../helpers/records/iterator-record'); 12 12 13 // https://262.ecma-international.org/1 4.0/#sec-iteratorclose13 // https://262.ecma-international.org/15.0/#sec-iteratorclose 14 14 15 15 module.exports = function IteratorClose(iteratorRecord, completion) { -
imaps-frontend/node_modules/es-abstract/2024/IteratorNext.js
rd565449 r0c6b92a 8 8 var isIteratorRecord = require('../helpers/records/iterator-record'); 9 9 10 // https://262.ecma-international.org/1 4.0/#sec-iteratornext10 // https://262.ecma-international.org/15.0/#sec-iteratornext 11 11 12 12 module.exports = function IteratorNext(iteratorRecord) { -
imaps-frontend/node_modules/es-abstract/2024/IteratorStep.js
rd565449 r0c6b92a 8 8 var isIteratorRecord = require('../helpers/records/iterator-record'); 9 9 10 // https://262.ecma-international.org/1 4.0/#sec-iteratorstep10 // https://262.ecma-international.org/15.0/#sec-iteratorstep 11 11 12 12 module.exports = function IteratorStep(iteratorRecord) { -
imaps-frontend/node_modules/es-abstract/2024/IteratorToList.js
rd565449 r0c6b92a 12 12 var isIteratorRecord = require('../helpers/records/iterator-record'); 13 13 14 // https://262.ecma-international.org/1 4.0/#sec-iteratortolist14 // https://262.ecma-international.org/15.0/#sec-iteratortolist 15 15 16 16 module.exports = function IteratorToList(iteratorRecord) { -
imaps-frontend/node_modules/es-abstract/2024/MakeTypedArrayWithBufferWitnessRecord.js
rd565449 r0c6b92a 9 9 var typedArrayBuffer = require('typed-array-buffer'); 10 10 11 // https:// tc39.es/ecma262/#sec-maketypedarraywithbufferwitnessrecord11 // https://262.ecma-international.org/15.0/#sec-maketypedarraywithbufferwitnessrecord 12 12 13 13 module.exports = function MakeTypedArrayWithBufferWitnessRecord(obj, order) { -
imaps-frontend/node_modules/es-abstract/2024/TypedArrayByteLength.js
rd565449 r0c6b92a 11 11 var typedArrayByteLength = require('typed-array-byte-length'); 12 12 13 // https:// tc39.es/ecma262/#sec-typedarraybytelength13 // https://262.ecma-international.org/15.0/#sec-typedarraybytelength 14 14 15 15 module.exports = function TypedArrayByteLength(taRecord) { -
imaps-frontend/node_modules/es-abstract/2024/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.