Changeset 79a0317 for imaps-frontend/node_modules/get-intrinsic
- Timestamp:
- 01/21/25 03:08:24 (3 months ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/get-intrinsic
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/get-intrinsic/CHANGELOG.md
r0c6b92a r79a0317 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [v1.2.7](https://github.com/ljharb/get-intrinsic/compare/v1.2.6...v1.2.7) - 2025-01-02 9 10 ### Commits 11 12 - [Refactor] use `get-proto` directly [`00ab955`](https://github.com/ljharb/get-intrinsic/commit/00ab95546a0980c8ad42a84253daaa8d2adcedf9) 13 - [Deps] update `math-intrinsics` [`c716cdd`](https://github.com/ljharb/get-intrinsic/commit/c716cdd6bbe36b438057025561b8bb5a879ac8a0) 14 - [Dev Deps] update `call-bound`, `es-abstract` [`dc648a6`](https://github.com/ljharb/get-intrinsic/commit/dc648a67eb359037dff8d8619bfa71d86debccb1) 15 16 ## [v1.2.6](https://github.com/ljharb/get-intrinsic/compare/v1.2.5...v1.2.6) - 2024-12-11 17 18 ### Commits 19 20 - [Refactor] use `math-intrinsics` [`841be86`](https://github.com/ljharb/get-intrinsic/commit/841be8641a9254c4c75483b30c8871b5d5065926) 21 - [Refactor] use `es-object-atoms` [`42057df`](https://github.com/ljharb/get-intrinsic/commit/42057dfa16f66f64787e66482af381cc6f31d2c1) 22 - [Deps] update `call-bind-apply-helpers` [`45afa24`](https://github.com/ljharb/get-intrinsic/commit/45afa24a9ee4d6d3c172db1f555b16cb27843ef4) 23 - [Dev Deps] update `call-bound` [`9cba9c6`](https://github.com/ljharb/get-intrinsic/commit/9cba9c6e70212bc163b7a5529cb25df46071646f) 24 25 ## [v1.2.5](https://github.com/ljharb/get-intrinsic/compare/v1.2.4...v1.2.5) - 2024-12-06 26 27 ### Commits 28 29 - [actions] split out node 10-20, and 20+ [`6e2b9dd`](https://github.com/ljharb/get-intrinsic/commit/6e2b9dd23902665681ebe453256ccfe21d7966f0) 30 - [Refactor] use `dunder-proto` and `call-bind-apply-helpers` instead of `has-proto` [`c095d17`](https://github.com/ljharb/get-intrinsic/commit/c095d179ad0f4fbfff20c8a3e0cb4fe668018998) 31 - [Refactor] use `gopd` [`9841d5b`](https://github.com/ljharb/get-intrinsic/commit/9841d5b35f7ab4fd2d193f0c741a50a077920e90) 32 - [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `es-abstract`, `es-value-fixtures`, `gopd`, `mock-property`, `object-inspect`, `tape` [`2d07e01`](https://github.com/ljharb/get-intrinsic/commit/2d07e01310cee2cbaedfead6903df128b1f5d425) 33 - [Deps] update `gopd`, `has-proto`, `has-symbols`, `hasown` [`974d8bf`](https://github.com/ljharb/get-intrinsic/commit/974d8bf5baad7939eef35c25cc1dd88c10a30fa6) 34 - [Dev Deps] update `call-bind`, `es-abstract`, `tape` [`df9dde1`](https://github.com/ljharb/get-intrinsic/commit/df9dde178186631ab8a3165ede056549918ce4bc) 35 - [Refactor] cache `es-define-property` as well [`43ef543`](https://github.com/ljharb/get-intrinsic/commit/43ef543cb02194401420e3a914a4ca9168691926) 36 - [Deps] update `has-proto`, `has-symbols`, `hasown` [`ad4949d`](https://github.com/ljharb/get-intrinsic/commit/ad4949d5467316505aad89bf75f9417ed782f7af) 37 - [Tests] use `call-bound` directly [`ad5c406`](https://github.com/ljharb/get-intrinsic/commit/ad5c4069774bfe90e520a35eead5fe5ca9d69e80) 38 - [Deps] update `has-proto`, `hasown` [`45414ca`](https://github.com/ljharb/get-intrinsic/commit/45414caa312333a2798953682c68f85c550627dd) 39 - [Tests] replace `aud` with `npm audit` [`18d3509`](https://github.com/ljharb/get-intrinsic/commit/18d3509f79460e7924da70409ee81e5053087523) 40 - [Deps] update `es-define-property` [`aadaa3b`](https://github.com/ljharb/get-intrinsic/commit/aadaa3b2188d77ad9bff394ce5d4249c49eb21f5) 41 - [Dev Deps] add missing peer dep [`c296a16`](https://github.com/ljharb/get-intrinsic/commit/c296a16246d0c9a5981944f4cc5cf61fbda0cf6a) 7 42 8 43 ## [v1.2.4](https://github.com/ljharb/get-intrinsic/compare/v1.2.3...v1.2.4) - 2024-02-05 -
imaps-frontend/node_modules/get-intrinsic/index.js
r0c6b92a r79a0317 2 2 3 3 var undefined; 4 5 var $Object = require('es-object-atoms'); 4 6 5 7 var $Error = require('es-errors'); … … 11 13 var $URIError = require('es-errors/uri'); 12 14 15 var abs = require('math-intrinsics/abs'); 16 var floor = require('math-intrinsics/floor'); 17 var max = require('math-intrinsics/max'); 18 var min = require('math-intrinsics/min'); 19 var pow = require('math-intrinsics/pow'); 20 var round = require('math-intrinsics/round'); 21 var sign = require('math-intrinsics/sign'); 22 13 23 var $Function = Function; 14 24 … … 20 30 }; 21 31 22 var $gOPD = Object.getOwnPropertyDescriptor; 23 if ($gOPD) { 24 try { 25 $gOPD({}, ''); 26 } catch (e) { 27 $gOPD = null; // this is IE 8, which has a broken gOPD 28 } 29 } 32 var $gOPD = require('gopd'); 33 var $defineProperty = require('es-define-property'); 30 34 31 35 var throwTypeError = function () { … … 50 54 51 55 var hasSymbols = require('has-symbols')(); 52 var hasProto = require('has-proto')(); 53 54 var getProto = Object.getPrototypeOf || (55 hasProto 56 ? function (x) { return x.__proto__; } // eslint-disable-line no-proto 57 : null 58 );56 57 var getProto = require('get-proto'); 58 var $ObjectGPO = require('get-proto/Object.getPrototypeOf'); 59 var $ReflectGPO = require('get-proto/Reflect.getPrototypeOf'); 60 61 var $apply = require('call-bind-apply-helpers/functionApply'); 62 var $call = require('call-bind-apply-helpers/functionCall'); 59 63 60 64 var needsEval = {}; … … 103 107 '%Math%': Math, 104 108 '%Number%': Number, 105 '%Object%': Object, 109 '%Object%': $Object, 110 '%Object.getOwnPropertyDescriptor%': $gOPD, 106 111 '%parseFloat%': parseFloat, 107 112 '%parseInt%': parseInt, … … 129 134 '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap, 130 135 '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef, 131 '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet 136 '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet, 137 138 '%Function.prototype.call%': $call, 139 '%Function.prototype.apply%': $apply, 140 '%Object.defineProperty%': $defineProperty, 141 '%Object.getPrototypeOf%': $ObjectGPO, 142 '%Math.abs%': abs, 143 '%Math.floor%': floor, 144 '%Math.max%': max, 145 '%Math.min%': min, 146 '%Math.pow%': pow, 147 '%Math.round%': round, 148 '%Math.sign%': sign, 149 '%Reflect.getPrototypeOf%': $ReflectGPO 132 150 }; 133 151 … … 224 242 var bind = require('function-bind'); 225 243 var hasOwn = require('hasown'); 226 var $concat = bind.call( Function.call, Array.prototype.concat);227 var $spliceApply = bind.call( Function.apply, Array.prototype.splice);228 var $replace = bind.call( Function.call, String.prototype.replace);229 var $strSlice = bind.call( Function.call, String.prototype.slice);230 var $exec = bind.call( Function.call, RegExp.prototype.exec);244 var $concat = bind.call($call, Array.prototype.concat); 245 var $spliceApply = bind.call($apply, Array.prototype.splice); 246 var $replace = bind.call($call, String.prototype.replace); 247 var $strSlice = bind.call($call, String.prototype.slice); 248 var $exec = bind.call($call, RegExp.prototype.exec); 231 249 232 250 /* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ -
imaps-frontend/node_modules/get-intrinsic/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "get-intrinsic", 3 "version": "1.2.4", 4 "description": "Get and robustly cache all JS language-level intrinsics at first require time", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./package.json": "./package.json" 9 }, 10 "sideEffects": false, 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "prepublish": "not-in-publish || npm run prepublishOnly", 14 "prepublishOnly": "safe-publish-latest", 15 "prelint": "evalmd README.md", 16 "lint": "eslint --ext=.js,.mjs .", 17 "pretest": "npm run lint", 18 "tests-only": "nyc tape 'test/**/*.js'", 19 "test": "npm run tests-only", 20 "posttest": "aud --production", 21 "version": "auto-changelog && git add CHANGELOG.md", 22 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "git+https://github.com/ljharb/get-intrinsic.git" 27 }, 28 "keywords": [ 29 "javascript", 30 "ecmascript", 31 "es", 32 "js", 33 "intrinsic", 34 "getintrinsic", 35 "es-abstract" 36 ], 37 "author": "Jordan Harband <ljharb@gmail.com>", 38 "funding": { 39 "url": "https://github.com/sponsors/ljharb" 40 }, 41 "license": "MIT", 42 "bugs": { 43 "url": "https://github.com/ljharb/get-intrinsic/issues" 44 }, 45 "homepage": "https://github.com/ljharb/get-intrinsic#readme", 46 "devDependencies": { 47 "@ljharb/eslint-config": "^21.1.0", 48 "aud": "^2.0.4", 49 "auto-changelog": "^2.4.0", 50 "call-bind": "^1.0.5", 51 "es-abstract": "^1.22.3", 52 "es-value-fixtures": "^1.4.2", 53 "eslint": "=8.8.0", 54 "evalmd": "^0.0.19", 55 "for-each": "^0.3.3", 56 "gopd": "^1.0.1", 57 "make-async-function": "^1.0.0", 58 "make-async-generator-function": "^1.0.0", 59 "make-generator-function": "^2.0.0", 60 "mock-property": "^1.0.3", 61 "npmignore": "^0.3.1", 62 "nyc": "^10.3.2", 63 "object-inspect": "^1.13.1", 64 "safe-publish-latest": "^2.0.0", 65 "tape": "^5.7.4" 66 }, 67 "auto-changelog": { 68 "output": "CHANGELOG.md", 69 "template": "keepachangelog", 70 "unreleased": false, 71 "commitLimit": false, 72 "backfillLimit": false, 73 "hideCredit": true 74 }, 75 "dependencies": { 76 "es-errors": "^1.3.0", 77 "function-bind": "^1.1.2", 78 "has-proto": "^1.0.1", 79 "has-symbols": "^1.0.3", 80 "hasown": "^2.0.0" 81 }, 82 "testling": { 83 "files": "test/GetIntrinsic.js" 84 }, 85 "publishConfig": { 86 "ignore": [ 87 ".github/workflows" 88 ] 89 }, 90 "engines": { 91 "node": ">= 0.4" 92 } 2 "_from": "get-intrinsic@^1.2.4", 3 "_id": "get-intrinsic@1.2.7", 4 "_inBundle": false, 5 "_integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", 6 "_location": "/get-intrinsic", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "get-intrinsic@^1.2.4", 12 "name": "get-intrinsic", 13 "escapedName": "get-intrinsic", 14 "rawSpec": "^1.2.4", 15 "saveSpec": null, 16 "fetchSpec": "^1.2.4" 17 }, 18 "_requiredBy": [ 19 "/array-includes", 20 "/arraybuffer.prototype.slice", 21 "/call-bind", 22 "/call-bound", 23 "/es-abstract", 24 "/es-iterator-helpers", 25 "/es-set-tostringtag", 26 "/get-symbol-description", 27 "/is-array-buffer", 28 "/is-data-view", 29 "/is-weakset", 30 "/iterator.prototype", 31 "/own-keys", 32 "/reflect.getprototypeof", 33 "/safe-array-concat", 34 "/set-function-length", 35 "/side-channel-map", 36 "/side-channel-weakmap", 37 "/string.prototype.matchall" 38 ], 39 "_resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", 40 "_shasum": "dcfcb33d3272e15f445d15124bc0a216189b9044", 41 "_spec": "get-intrinsic@^1.2.4", 42 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/array-includes", 43 "author": { 44 "name": "Jordan Harband", 45 "email": "ljharb@gmail.com" 46 }, 47 "auto-changelog": { 48 "output": "CHANGELOG.md", 49 "template": "keepachangelog", 50 "unreleased": false, 51 "commitLimit": false, 52 "backfillLimit": false, 53 "hideCredit": true 54 }, 55 "bugs": { 56 "url": "https://github.com/ljharb/get-intrinsic/issues" 57 }, 58 "bundleDependencies": false, 59 "dependencies": { 60 "call-bind-apply-helpers": "^1.0.1", 61 "es-define-property": "^1.0.1", 62 "es-errors": "^1.3.0", 63 "es-object-atoms": "^1.0.0", 64 "function-bind": "^1.1.2", 65 "get-proto": "^1.0.0", 66 "gopd": "^1.2.0", 67 "has-symbols": "^1.1.0", 68 "hasown": "^2.0.2", 69 "math-intrinsics": "^1.1.0" 70 }, 71 "deprecated": false, 72 "description": "Get and robustly cache all JS language-level intrinsics at first require time", 73 "devDependencies": { 74 "@ljharb/eslint-config": "^21.1.1", 75 "auto-changelog": "^2.5.0", 76 "call-bound": "^1.0.3", 77 "encoding": "^0.1.13", 78 "es-abstract": "^1.23.8", 79 "es-value-fixtures": "^1.5.0", 80 "eslint": "=8.8.0", 81 "evalmd": "^0.0.19", 82 "for-each": "^0.3.3", 83 "make-async-function": "^1.0.0", 84 "make-async-generator-function": "^1.0.0", 85 "make-generator-function": "^2.0.0", 86 "mock-property": "^1.1.0", 87 "npmignore": "^0.3.1", 88 "nyc": "^10.3.2", 89 "object-inspect": "^1.13.3", 90 "safe-publish-latest": "^2.0.0", 91 "tape": "^5.9.0" 92 }, 93 "engines": { 94 "node": ">= 0.4" 95 }, 96 "exports": { 97 ".": "./index.js", 98 "./package.json": "./package.json" 99 }, 100 "funding": { 101 "url": "https://github.com/sponsors/ljharb" 102 }, 103 "homepage": "https://github.com/ljharb/get-intrinsic#readme", 104 "keywords": [ 105 "javascript", 106 "ecmascript", 107 "es", 108 "js", 109 "intrinsic", 110 "getintrinsic", 111 "es-abstract" 112 ], 113 "license": "MIT", 114 "main": "index.js", 115 "name": "get-intrinsic", 116 "publishConfig": { 117 "ignore": [ 118 ".github/workflows" 119 ] 120 }, 121 "repository": { 122 "type": "git", 123 "url": "git+https://github.com/ljharb/get-intrinsic.git" 124 }, 125 "scripts": { 126 "lint": "eslint --ext=.js,.mjs .", 127 "posttest": "npx npm@'>= 10.2' audit --production", 128 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 129 "prelint": "evalmd README.md", 130 "prepack": "npmignore --auto --commentLines=autogenerated", 131 "prepublish": "not-in-publish || npm run prepublishOnly", 132 "prepublishOnly": "safe-publish-latest", 133 "pretest": "npm run lint", 134 "test": "npm run tests-only", 135 "tests-only": "nyc tape 'test/**/*.js'", 136 "version": "auto-changelog && git add CHANGELOG.md" 137 }, 138 "sideEffects": false, 139 "testling": { 140 "files": "test/GetIntrinsic.js" 141 }, 142 "version": "1.2.7" 93 143 } -
imaps-frontend/node_modules/get-intrinsic/test/GetIntrinsic.js
r0c6b92a r79a0317 11 11 var mockProperty = require('mock-property'); 12 12 13 var callBound = require('call-b ind/callBound');13 var callBound = require('call-bound'); 14 14 var v = require('es-value-fixtures'); 15 15 var $gOPD = require('gopd'); 16 var DefinePropertyOrThrow = require('es-abstract/202 1/DefinePropertyOrThrow');16 var DefinePropertyOrThrow = require('es-abstract/2023/DefinePropertyOrThrow'); 17 17 18 18 var $isProto = callBound('%Object.prototype.isPrototypeOf%');
Note:
See TracChangeset
for help on using the changeset viewer.