Changeset 0c6b92a for imaps-frontend/node_modules/es-abstract
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- Location:
- imaps-frontend/node_modules/es-abstract
- Files:
-
- 1 added
- 47 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-abstract/2015/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/2016/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/2017/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/2018/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/2018/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/2018/CreateAsyncFromSyncIterator.js
rd565449 r0c6b92a 18 18 var Type = require('./Type'); 19 19 20 var isIteratorRecord = require('../helpers/records/iterator-record ');20 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 21 21 22 22 var SLOT = require('internal-slot'); -
imaps-frontend/node_modules/es-abstract/2019/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/2019/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/2019/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/2020/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/2020/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/2020/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/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) { -
imaps-frontend/node_modules/es-abstract/2022/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/2022/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/2022/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/2022/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) { -
imaps-frontend/node_modules/es-abstract/2023/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/2023/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/2023/CreateAsyncFromSyncIterator.js
rd565449 r0c6b92a 18 18 var SLOT = require('internal-slot'); 19 19 20 var isIteratorRecord = require('../helpers/records/iterator-record ');20 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 21 21 22 22 var $AsyncFromSyncIteratorPrototype = GetIntrinsic('%AsyncFromSyncIteratorPrototype%', true) || { -
imaps-frontend/node_modules/es-abstract/2023/IteratorClose.js
rd565449 r0c6b92a 9 9 var Type = require('./Type'); 10 10 11 var isIteratorRecord = require('../helpers/records/iterator-record ');11 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 12 12 13 13 // https://262.ecma-international.org/14.0/#sec-iteratorclose -
imaps-frontend/node_modules/es-abstract/2023/IteratorNext.js
rd565449 r0c6b92a 6 6 var Type = require('./Type'); 7 7 8 var isIteratorRecord = require('../helpers/records/iterator-record ');8 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 9 9 10 10 // https://262.ecma-international.org/14.0/#sec-iteratornext -
imaps-frontend/node_modules/es-abstract/2023/IteratorStep.js
rd565449 r0c6b92a 6 6 var IteratorNext = require('./IteratorNext'); 7 7 8 var isIteratorRecord = require('../helpers/records/iterator-record ');8 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 9 9 10 10 // https://262.ecma-international.org/14.0/#sec-iteratorstep -
imaps-frontend/node_modules/es-abstract/2023/IteratorToList.js
rd565449 r0c6b92a 10 10 var IteratorValue = require('./IteratorValue'); 11 11 12 var isIteratorRecord = require('../helpers/records/iterator-record ');12 var isIteratorRecord = require('../helpers/records/iterator-record-2023'); 13 13 14 14 // https://262.ecma-international.org/14.0/#sec-iteratortolist -
imaps-frontend/node_modules/es-abstract/2023/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) { -
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) { -
imaps-frontend/node_modules/es-abstract/CHANGELOG.md
rd565449 r0c6b92a 1 1.23.5 / 2024-11-14 2 ================= 3 * [Fix] `ES2015`+: `CompletionRecord`: ensure `?` works on any non-abrupt completion 4 5 1.23.4 / 2024-11-12 6 ================= 7 * [Fix] `ES2024`+: Iterator Records can now have non-functions in `[[NextMethod]]` 8 * [meta] update spec URL comments 9 * [Deps] update `globalthis`, `object-inspect`, `regexp.prototype.flags` 10 * [Dev Deps] update `@ljharb/eslint-config`, `@unicode/unicode-15.0.0`, `diff`, `es-value-fixtures`, `is-core-module`, `mock-property`, `ses`, `tape` 11 * [actions] split out node 10-20, and 20+ 12 * [Tests] switch to `npm audit` from `aud` 13 * [Tests] use `.assertion` instead of monkeypatching tape 14 * [Tests] increase coverage 15 1 16 1.23.3 / 2024-03-29 2 17 ================= -
imaps-frontend/node_modules/es-abstract/helpers/assertRecord.js
rd565449 r0c6b92a 8 8 var isMatchRecord = require('./records/match-record'); 9 9 var isPropertyDescriptor = require('./records/property-descriptor'); 10 var isIteratorRecord = require('./records/iterator-record ');10 var isIteratorRecord = require('./records/iterator-record-2023'); 11 11 var isPromiseCapabilityRecord = require('./records/promise-capability-record'); 12 12 var isAsyncGeneratorRequestRecord = require('./records/async-generator-request-record'); -
imaps-frontend/node_modules/es-abstract/helpers/records/iterator-record.js
rd565449 r0c6b92a 8 8 && hasOwn(value, '[[Iterator]]') 9 9 && hasOwn(value, '[[NextMethod]]') 10 && typeof value['[[NextMethod]]'] === 'function'11 10 && hasOwn(value, '[[Done]]') 12 11 && typeof value['[[Done]]'] === 'boolean'; -
imaps-frontend/node_modules/es-abstract/package.json
rd565449 r0c6b92a 1 1 { 2 2 "name": "es-abstract", 3 "version": "1.23. 3",3 "version": "1.23.5", 4 4 "author": { 5 5 "name": "Jordan Harband", … … 36 36 "test": "npm run tests-only && npm run test:ses", 37 37 "test:ses": "node test/ses-compat", 38 "posttest": " aud--production",38 "posttest": "npx npm@'>= 10.2' audit --production", 39 39 "tests-only": "nyc node --stack-size=5120 test", 40 40 "lint": "eslint .", … … 72 72 "get-intrinsic": "^1.2.4", 73 73 "get-symbol-description": "^1.0.2", 74 "globalthis": "^1.0. 3",74 "globalthis": "^1.0.4", 75 75 "gopd": "^1.0.1", 76 76 "has-property-descriptors": "^1.0.2", … … 88 88 "is-typed-array": "^1.1.13", 89 89 "is-weakref": "^1.0.2", 90 "object-inspect": "^1.13. 1",90 "object-inspect": "^1.13.3", 91 91 "object-keys": "^1.1.1", 92 92 "object.assign": "^4.1.5", 93 "regexp.prototype.flags": "^1.5. 2",93 "regexp.prototype.flags": "^1.5.3", 94 94 "safe-array-concat": "^1.1.2", 95 95 "safe-regex-test": "^1.0.3", … … 105 105 }, 106 106 "devDependencies": { 107 "@ljharb/eslint-config": "^21.1. 0",108 "@unicode/unicode-15.0.0": "^1. 5.2",107 "@ljharb/eslint-config": "^21.1.1", 108 "@unicode/unicode-15.0.0": "^1.6.5", 109 109 "array.from": "^1.1.6", 110 110 "array.prototype.filter": "^1.0.4", 111 111 "array.prototype.flatmap": "^1.3.2", 112 112 "array.prototype.indexof": "^1.0.7", 113 "aud": "^2.0.4",114 113 "available-regexp-flags": "^1.0.4", 115 114 "cheerio": "=1.0.0-rc.3", 116 115 "define-accessor-property": "^1.0.0", 117 116 "define-data-property": "^1.1.4", 118 "diff": "^ 5.2.0",117 "diff": "^7.0.0", 119 118 "eclint": "^2.8.1", 120 "es-value-fixtures": "^1. 4.2",119 "es-value-fixtures": "^1.5.0", 121 120 "eslint": "=8.8.0", 122 121 "for-each": "^0.3.3", … … 128 127 "has-strict-mode": "^1.0.1", 129 128 "in-publish": "^2.0.1", 130 "is-core-module": "^2.1 3.1",129 "is-core-module": "^2.15.1", 131 130 "is-registered-symbol": "^1.0.1", 132 131 "jackspeak": "=2.1.1", … … 135 134 "make-async-generator-function": "^1.0.0", 136 135 "make-generator-function": "^2.0.0", 137 "mock-property": "^1. 0.3",136 "mock-property": "^1.1.0", 138 137 "npmignore": "^0.3.1", 139 138 "nyc": "^10.3.2", … … 141 140 "safe-bigint": "^1.1.0", 142 141 "safe-publish-latest": "^2.0.0", 143 "ses": "^ 0.18.8",144 "tape": "^5. 7.5"142 "ses": "^1.9.1", 143 "tape": "^5.9.0" 145 144 }, 146 145 "testling": {
Note:
See TracChangeset
for help on using the changeset viewer.