Ignore:
Timestamp:
01/21/25 03:08:24 (4 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

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

Legend:

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

    r0c6b92a r79a0317  
    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.4](https://github.com/inspect-js/typed-array-byte-offset/compare/v1.0.3...v1.0.4) - 2024-12-18
     9
     10### Commits
     11
     12- [Tests] split out and enhance "no-proto" tests [`64d1a73`](https://github.com/inspect-js/typed-array-byte-offset/commit/64d1a73a0a7f20484ee817c4a6758121887e30d3)
     13- [types] improve types [`21f484f`](https://github.com/inspect-js/typed-array-byte-offset/commit/21f484f55f9c6e3406b5eacbc937aa2e195da731)
     14- [Tests] add `--disable-proto=delete` tests [`8f77f2a`](https://github.com/inspect-js/typed-array-byte-offset/commit/8f77f2af48e1522aae10e0429810907df9f9f6fc)
     15- [actions] re-add a finisher; add perms [`59c1b7b`](https://github.com/inspect-js/typed-array-byte-offset/commit/59c1b7bfab826bceb43441c60affb1c1ad4e6cc7)
     16- [Deps] update `call-bind`, `gopd`, `has-proto`, `reflect.getprototypeof` [`c0c30d5`](https://github.com/inspect-js/typed-array-byte-offset/commit/c0c30d57642858c8327b3d90b6104ccbb459d71a)
     17- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape` [`2638bd5`](https://github.com/inspect-js/typed-array-byte-offset/commit/2638bd5d7000e6d902414aeac88c00a148f5b152)
     18- [Deps] update `is-typed-array`, `reflect.getprototypeof` [`11540a5`](https://github.com/inspect-js/typed-array-byte-offset/commit/11540a577044442ce42d684d00d4686d7613bed4)
     19- [Deps] update `is-typed-array` [`ad9cb70`](https://github.com/inspect-js/typed-array-byte-offset/commit/ad9cb70bcc09eaf535c24ce24a00716058833d64)
     20- [Dev Deps] update `@types/tape` [`2838854`](https://github.com/inspect-js/typed-array-byte-offset/commit/2838854db6053003b0818a337f1e2f95ab383bce)
    721
    822## [v1.0.3](https://github.com/inspect-js/typed-array-byte-offset/compare/v1.0.2...v1.0.3) - 2024-11-21
  • imaps-frontend/node_modules/typed-array-byte-offset/index.d.ts

    r0c6b92a r79a0317  
    1 type TypedArray =
    2         | Int8Array
    3         | Uint8Array
    4         | Uint8ClampedArray
    5         | Int16Array
    6         | Uint16Array
    7         | Int32Array
    8         | Uint32Array
    9         | Float32Array
    10         | Float64Array
    11         | BigInt64Array
    12         | BigUint64Array;
     1import TypedArrayNames from 'possible-typed-array-names';
    132
    14 declare function typedArrayByteOffset(value: TypedArray): number;
     3declare namespace typedArrayByteOffset {
     4    export type TypedArrayName = typeof TypedArrayNames[number];
     5
     6        export type TypedArrayConstructor = typeof globalThis[TypedArrayName];
     7
     8        export type TypedArray = TypedArrayConstructor['prototype'];
     9}
     10
     11declare function typedArrayByteOffset(value: typedArrayByteOffset.TypedArray): number;
    1512declare function typedArrayByteOffset(value: unknown): false;
    1613
  • imaps-frontend/node_modules/typed-array-byte-offset/index.js

    r0c6b92a r79a0317  
    77var typedArrays = require('available-typed-arrays')();
    88
    9 /** @typedef {Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array} TypedArray */
    10 /** @typedef {(x: TypedArray) => number} ByteOffsetGetter */
     9/** @typedef {(x: import('.').TypedArray) => number} ByteOffsetGetter */
    1110
    12 /** @type {Object.<typeof typedArrays, ByteOffsetGetter>} */
    13 var getters = {};
     11/** @type {Record<import('.').TypedArrayName, ByteOffsetGetter>} */
     12var getters = {
     13        // @ts-expect-error TS can't handle __proto__ or `satisfies` in jsdoc
     14        __proto__: null
     15};
    1416
    1517var gOPD = require('gopd');
  • imaps-frontend/node_modules/typed-array-byte-offset/package.json

    r0c6b92a r79a0317  
    11{
    2         "name": "typed-array-byte-offset",
    3         "version": "1.0.3",
    4         "description": "Robustly get the byte offset of a Typed Array",
    5         "main": "index.js",
    6         "exports": {
    7                 ".": "./index.js",
    8                 "./package.json": "./package.json"
    9         },
    10         "types": "./index.d.ts",
    11         "sideEffects": false,
    12         "scripts": {
    13                 "prepack": "npmignore --auto --commentLines=autogenerated",
    14                 "prepublishOnly": "safe-publish-latest",
    15                 "prepublish": "not-in-publish || npm run prepublishOnly",
    16                 "pretest": "npm run lint",
    17                 "prelint": "evalmd README.md",
    18                 "lint": "eslint --ext=js,mjs .",
    19                 "postlint": "tsc -p . && attw -P",
    20                 "tests-only": "nyc tape 'test/**/*.js'",
    21                 "test": "npm run tests-only",
    22                 "posttest": "npx npm@'>=10.2' audit --production",
    23                 "version": "auto-changelog && git add CHANGELOG.md",
    24                 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    25         },
    26         "repository": {
    27                 "type": "git",
    28                 "url": "git+https://github.com/inspect-js/typed-array-byte-offset.git"
    29         },
    30         "keywords": [
    31                 "typed",
    32                 "array",
    33                 "byteOffset",
    34                 "byte",
    35                 "offset",
    36                 "robust",
    37                 "es",
    38                 "Int8Array",
    39                 "Uint8Array",
    40                 "Uint8ClampedArray",
    41                 "Int16Array",
    42                 "Uint16Array",
    43                 "Int32Array",
    44                 "Uint32Array",
    45                 "Float32Array",
    46                 "Float64Array",
    47                 "BigInt64Array",
    48                 "BigUint64Array"
    49         ],
    50         "author": "Jordan Harband <ljharb@gmail.com>",
    51         "funding": {
    52                 "url": "https://github.com/sponsors/ljharb"
    53         },
    54         "license": "MIT",
    55         "bugs": {
    56                 "url": "https://github.com/inspect-js/typed-array-byte-offset/issues"
    57         },
    58         "homepage": "https://github.com/inspect-js/typed-array-byte-offset#readme",
    59         "dependencies": {
    60                 "available-typed-arrays": "^1.0.7",
    61                 "call-bind": "^1.0.7",
    62                 "for-each": "^0.3.3",
    63                 "gopd": "^1.0.1",
    64                 "has-proto": "^1.0.3",
    65                 "is-typed-array": "^1.1.13",
    66                 "reflect.getprototypeof": "^1.0.6"
    67         },
    68         "devDependencies": {
    69                 "@arethetypeswrong/cli": "^0.17.0",
    70                 "@ljharb/eslint-config": "^21.1.1",
    71                 "@ljharb/tsconfig": "^0.2.0",
    72                 "@types/call-bind": "^1.0.5",
    73                 "@types/es-abstract": "^1.17.9",
    74                 "@types/for-each": "^0.3.3",
    75                 "@types/gopd": "^1.0.3",
    76                 "@types/is-callable": "^1.1.2",
    77                 "@types/make-arrow-function": "^1.2.2",
    78                 "@types/make-generator-function": "^2.0.3",
    79                 "@types/object-inspect": "^1.13.0",
    80                 "@types/tape": "^5.6.4",
    81                 "auto-changelog": "^2.5.0",
    82                 "eslint": "=8.8.0",
    83                 "evalmd": "^0.0.19",
    84                 "in-publish": "^2.0.1",
    85                 "is-callable": "^1.2.7",
    86                 "make-arrow-function": "^1.2.0",
    87                 "make-generator-function": "^2.0.0",
    88                 "npmignore": "^0.3.1",
    89                 "nyc": "^10.3.2",
    90                 "object-inspect": "^1.13.3",
    91                 "possible-typed-array-names": "^1.0.0",
    92                 "safe-publish-latest": "^2.0.0",
    93                 "tape": "^5.9.0",
    94                 "typescript": "next"
    95         },
    96         "engines": {
    97                 "node": ">= 0.4"
    98         },
    99         "auto-changelog": {
    100                 "output": "CHANGELOG.md",
    101                 "template": "keepachangelog",
    102                 "unreleased": false,
    103                 "commitLimit": false,
    104                 "backfillLimit": false,
    105                 "hideCredit": true
    106         },
    107         "testling": {
    108                 "files": "test/index.js"
    109         },
    110         "publishConfig": {
    111                 "ignore": [
    112                         ".github/workflows",
    113                         "types"
    114                 ]
    115         }
     2  "_from": "typed-array-byte-offset@^1.0.4",
     3  "_id": "typed-array-byte-offset@1.0.4",
     4  "_inBundle": false,
     5  "_integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
     6  "_location": "/typed-array-byte-offset",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "range",
     10    "registry": true,
     11    "raw": "typed-array-byte-offset@^1.0.4",
     12    "name": "typed-array-byte-offset",
     13    "escapedName": "typed-array-byte-offset",
     14    "rawSpec": "^1.0.4",
     15    "saveSpec": null,
     16    "fetchSpec": "^1.0.4"
     17  },
     18  "_requiredBy": [
     19    "/es-abstract"
     20  ],
     21  "_resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
     22  "_shasum": "ae3698b8ec91a8ab945016108aef00d5bff12355",
     23  "_spec": "typed-array-byte-offset@^1.0.4",
     24  "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract",
     25  "author": {
     26    "name": "Jordan Harband",
     27    "email": "ljharb@gmail.com"
     28  },
     29  "auto-changelog": {
     30    "output": "CHANGELOG.md",
     31    "template": "keepachangelog",
     32    "unreleased": false,
     33    "commitLimit": false,
     34    "backfillLimit": false,
     35    "hideCredit": true
     36  },
     37  "bugs": {
     38    "url": "https://github.com/inspect-js/typed-array-byte-offset/issues"
     39  },
     40  "bundleDependencies": false,
     41  "dependencies": {
     42    "available-typed-arrays": "^1.0.7",
     43    "call-bind": "^1.0.8",
     44    "for-each": "^0.3.3",
     45    "gopd": "^1.2.0",
     46    "has-proto": "^1.2.0",
     47    "is-typed-array": "^1.1.15",
     48    "reflect.getprototypeof": "^1.0.9"
     49  },
     50  "deprecated": false,
     51  "description": "Robustly get the byte offset of a Typed Array",
     52  "devDependencies": {
     53    "@arethetypeswrong/cli": "^0.17.1",
     54    "@ljharb/eslint-config": "^21.1.1",
     55    "@ljharb/tsconfig": "^0.2.2",
     56    "@types/call-bind": "^1.0.5",
     57    "@types/es-abstract": "^1.17.9",
     58    "@types/for-each": "^0.3.3",
     59    "@types/gopd": "^1.0.3",
     60    "@types/is-callable": "^1.1.2",
     61    "@types/make-arrow-function": "^1.2.2",
     62    "@types/make-generator-function": "^2.0.3",
     63    "@types/object-inspect": "^1.13.0",
     64    "@types/tape": "^5.8.0",
     65    "auto-changelog": "^2.5.0",
     66    "eslint": "=8.8.0",
     67    "evalmd": "^0.0.19",
     68    "in-publish": "^2.0.1",
     69    "is-callable": "^1.2.7",
     70    "make-arrow-function": "^1.2.0",
     71    "make-generator-function": "^2.0.0",
     72    "npmignore": "^0.3.1",
     73    "nyc": "^10.3.2",
     74    "object-inspect": "^1.13.3",
     75    "possible-typed-array-names": "^1.0.0",
     76    "safe-publish-latest": "^2.0.0",
     77    "tape": "^5.9.0",
     78    "typescript": "next"
     79  },
     80  "engines": {
     81    "node": ">= 0.4"
     82  },
     83  "exports": {
     84    ".": "./index.js",
     85    "./package.json": "./package.json"
     86  },
     87  "funding": {
     88    "url": "https://github.com/sponsors/ljharb"
     89  },
     90  "homepage": "https://github.com/inspect-js/typed-array-byte-offset#readme",
     91  "keywords": [
     92    "typed",
     93    "array",
     94    "byteOffset",
     95    "byte",
     96    "offset",
     97    "robust",
     98    "es",
     99    "Int8Array",
     100    "Uint8Array",
     101    "Uint8ClampedArray",
     102    "Int16Array",
     103    "Uint16Array",
     104    "Int32Array",
     105    "Uint32Array",
     106    "Float32Array",
     107    "Float64Array",
     108    "BigInt64Array",
     109    "BigUint64Array"
     110  ],
     111  "license": "MIT",
     112  "main": "index.js",
     113  "name": "typed-array-byte-offset",
     114  "publishConfig": {
     115    "ignore": [
     116      ".github/workflows",
     117      "types"
     118    ]
     119  },
     120  "repository": {
     121    "type": "git",
     122    "url": "git+https://github.com/inspect-js/typed-array-byte-offset.git"
     123  },
     124  "scripts": {
     125    "lint": "eslint --ext=js,mjs .",
     126    "postlint": "tsc -p . && attw -P",
     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/index.js"
     141  },
     142  "types": "./index.d.ts",
     143  "version": "1.0.4"
    116144}
Note: See TracChangeset for help on using the changeset viewer.