Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

Location:
imaps-frontend/node_modules/typed-array-length
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/typed-array-length/CHANGELOG.md

    rd565449 r0c6b92a  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [v1.0.7](https://github.com/inspect-js/typed-array-length/compare/v1.0.6...v1.0.7) - 2024-11-22
     9
     10### Fixed
     11
     12- [Fix] avoid relying on `__proto__` accessor [`#9`](https://github.com/inspect-js/typed-array-length/issues/9)
     13
     14### Commits
     15
     16- [Tests] fix TS issues [`f36b6bd`](https://github.com/inspect-js/typed-array-length/commit/f36b6bdbe472923cdd24158705a19b91ae5f512c)
     17- [actions] split out node 10-20, and 20+ [`d81efa0`](https://github.com/inspect-js/typed-array-length/commit/d81efa0b275161e82f78ceddb3ccf0bd63c2b834)
     18- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@types/object-inspect`, `auto-changelog`, `object-inspect`, `tape` [`a61b15b`](https://github.com/inspect-js/typed-array-length/commit/a61b15baa1dbc40d0fdd0e23779bfa32acab6f5e)
     19- [Tests] replace `aud` with `npm audit` [`b0b4e8f`](https://github.com/inspect-js/typed-array-length/commit/b0b4e8fa9a3050edcddead80e86765d8fd78298c)
    720
    821## [v1.0.6](https://github.com/inspect-js/typed-array-length/compare/v1.0.5...v1.0.6) - 2024-03-21
  • imaps-frontend/node_modules/typed-array-length/index.js

    rd565449 r0c6b92a  
    66var forEach = require('for-each');
    77var gOPD = require('gopd');
    8 var hasProto = require('has-proto')();
    98var isTypedArray = require('is-typed-array');
    109var typedArrays = require('possible-typed-array-names');
     10var gPO = require('reflect.getprototypeof/polyfill')();
    1111
    1212/** @typedef {(value: import('.').TypedArray) => number} TypedArrayLengthGetter */
     
    2828                        // @ts-expect-error TS doesn't narrow types inside callbacks, which is weird
    2929                        var descriptor = gOPD(Proto, 'length');
    30                         if (!descriptor && hasProto) {
    31                                 var superProto = Proto.__proto__; // eslint-disable-line no-proto
     30                        if (!descriptor) {
     31                                var superProto = gPO(Proto);
    3232                                // @ts-expect-error TS doesn't narrow types inside callbacks, which is weird
    3333                                descriptor = gOPD(superProto, 'length');
  • imaps-frontend/node_modules/typed-array-length/package.json

    rd565449 r0c6b92a  
    11{
    22        "name": "typed-array-length",
    3         "version": "1.0.6",
     3        "version": "1.0.7",
    44        "description": "Robustly get the length of a Typed Array",
    55        "main": "index.js",
     
    2121                "test:harmony": "nyc node --harmony --es-staging test",
    2222                "test": "npm run tests-only && npm run test:harmony",
    23                 "posttest": "aud --production",
     23                "posttest": "npx npm@'>=10.2' audit --production",
    2424                "version": "auto-changelog && git add CHANGELOG.md",
    2525                "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
     
    5555        "homepage": "https://github.com/inspect-js/typed-array-length#readme",
    5656        "devDependencies": {
    57                 "@arethetypeswrong/cli": "^0.15.2",
    58                 "@ljharb/eslint-config": "^21.1.0",
     57                "@arethetypeswrong/cli": "^0.17.0",
     58                "@ljharb/eslint-config": "^21.1.1",
    5959                "@ljharb/tsconfig": "^0.2.0",
    6060                "@types/call-bind": "^1.0.5",
     
    6464                "@types/make-arrow-function": "^1.2.2",
    6565                "@types/make-generator-function": "^2.0.3",
    66                 "@types/object-inspect": "^1.8.4",
     66                "@types/object-inspect": "^1.13.0",
    6767                "@types/tape": "^5.6.4",
    68                 "aud": "^2.0.4",
    69                 "auto-changelog": "^2.4.0",
     68                "auto-changelog": "^2.5.0",
    7069                "eslint": "=8.8.0",
    7170                "evalmd": "^0.0.19",
     
    7675                "npmignore": "^0.3.1",
    7776                "nyc": "^10.3.2",
    78                 "object-inspect": "^1.13.1",
     77                "object-inspect": "^1.13.3",
    7978                "safe-publish-latest": "^2.0.0",
    80                 "tape": "^5.7.5",
     79                "tape": "^5.9.0",
    8180                "typescript": "next"
    8281        },
     
    9392                "for-each": "^0.3.3",
    9493                "gopd": "^1.0.1",
    95                 "has-proto": "^1.0.3",
    9694                "is-typed-array": "^1.1.13",
    97                 "possible-typed-array-names": "^1.0.0"
     95                "possible-typed-array-names": "^1.0.0",
     96                "reflect.getprototypeof": "^1.0.6"
    9897        },
    9998        "testling": {
     
    102101        "publishConfig": {
    103102                "ignore": [
    104                         ".github/workflows"
     103                        ".github/workflows",
     104                        "types"
    105105                ]
    106106        },
  • imaps-frontend/node_modules/typed-array-length/tsconfig.json

    rd565449 r0c6b92a  
    11{
    2   "extends": "@ljharb/tsconfig",
    3   "compilerOptions": {
    4     "target": "ES2021",
    5   },
    6   "exclude": [
    7     "coverage",
    8   ],
     2        "extends": "@ljharb/tsconfig",
     3        "compilerOptions": {
     4                "target": "ES2021",
     5                "maxNodeModuleJsDepth": 0,
     6        },
     7        "exclude": [
     8                "coverage",
     9        ],
    910}
Note: See TracChangeset for help on using the changeset viewer.