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/is-typed-array
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/is-typed-array/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.1.15](https://github.com/inspect-js/is-typed-array/compare/v1.1.14...v1.1.15) - 2024-12-18
     9
     10### Commits
     11
     12- [types] improve types [`d934b49`](https://github.com/inspect-js/is-typed-array/commit/d934b49f7a16d5e20ba437a795b887f1f71ef240)
     13- [Dev Deps] update `@types/tape` [`da26511`](https://github.com/inspect-js/is-typed-array/commit/da26511ad7515c50fdc720701d5735b0d8a40800)
     14
     15## [v1.1.14](https://github.com/inspect-js/is-typed-array/compare/v1.1.13...v1.1.14) - 2024-12-17
     16
     17### Commits
     18
     19- [types] use shared config [`eafa7fa`](https://github.com/inspect-js/is-typed-array/commit/eafa7fad2fc8d464a68e218d39a7eab782d9ce76)
     20- [actions] split out node 10-20, and 20+ [`cd6d5a3`](https://github.com/inspect-js/is-typed-array/commit/cd6d5a3283a1e65cf5885e57daede65a5176fd91)
     21- [types] use `which-typed-array`’s `TypedArray` type; re-export it [`d7d9fcd`](https://github.com/inspect-js/is-typed-array/commit/d7d9fcd75d538b7f8146dcd9faca5142534a3d45)
     22- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/node`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `object-inspect`, `tape` [`65afb42`](https://github.com/inspect-js/is-typed-array/commit/65afb4263ff4f4ee4ee51b284dc7519ce969a666)
     23- [Dev Deps] update `@types/node`, `has-tostringtag`, `tape` [`9e27ddd`](https://github.com/inspect-js/is-typed-array/commit/9e27ddd62a51ebae46781de0adbd8871341c633c)
     24- [Tests] replace `aud` with `npm audit` [`ad4defe`](https://github.com/inspect-js/is-typed-array/commit/ad4defe211c77d42b880d13faf7737b8f1adaf13)
     25- [Tests] use `@arethetypeswrong/cli` [`ac4bcca`](https://github.com/inspect-js/is-typed-array/commit/ac4bcca4ee2215662e79aa21681756984bb0b6d1)
     26- [Deps] update `which-typed-array` [`c298129`](https://github.com/inspect-js/is-typed-array/commit/c2981299c09cd64d89bf1e496447c0379b45d03a)
     27- [Deps] update `which-typed-array` [`744c29a`](https://github.com/inspect-js/is-typed-array/commit/744c29aa8d4f9df360082074f7b4f2f0d42d76e5)
     28- [Dev Deps] add missing peer dep [`94d2f5a`](https://github.com/inspect-js/is-typed-array/commit/94d2f5a11016516823e8d943e0bfc7b29dcb146d)
    729
    830## [v1.1.13](https://github.com/inspect-js/is-typed-array/compare/v1.1.12...v1.1.13) - 2024-02-01
  • imaps-frontend/node_modules/is-typed-array/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 type { TypedArray } from 'which-typed-array';
    132
    14 declare function isTypedArray(value: unknown): value is TypedArray;
     3declare namespace isTypedArray {
     4    export { TypedArray };
     5}
     6
     7declare function isTypedArray(value: unknown): value is isTypedArray.TypedArray;
    158
    169export = isTypedArray;
  • imaps-frontend/node_modules/is-typed-array/package.json

    r0c6b92a r79a0317  
    11{
    2         "name": "is-typed-array",
    3         "version": "1.1.13",
    4         "author": {
    5                 "name": "Jordan Harband",
    6                 "email": "ljharb@gmail.com",
    7                 "url": "http://ljharb.codes"
    8         },
    9         "funding": {
    10                 "url": "https://github.com/sponsors/ljharb"
    11         },
    12         "contributors": [
    13                 {
    14                         "name": "Jordan Harband",
    15                         "email": "ljharb@gmail.com",
    16                         "url": "http://ljharb.codes"
    17                 }
    18         ],
    19         "description": "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
    20         "license": "MIT",
    21         "main": "index.js",
    22         "types": "./index.d.ts",
    23         "sideEffects": false,
    24         "scripts": {
    25                 "prepack": "npmignore --auto --commentLines=autogenerated",
    26                 "prepublishOnly": "safe-publish-latest",
    27                 "prepublish": "not-in-publish || npm run prepublishOnly",
    28                 "prelint": "evalmd README.md",
    29                 "lint": "eslint --ext=js,mjs .",
    30                 "postlint": "tsc -p .",
    31                 "pretest": "npm run --silent lint",
    32                 "test": "npm run tests-only && npm run test:harmony",
    33                 "tests-only": "nyc tape test",
    34                 "test:harmony": "nyc node --harmony --es-staging test",
    35                 "posttest": "npx aud --production",
    36                 "version": "auto-changelog && git add CHANGELOG.md",
    37                 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    38         },
    39         "repository": {
    40                 "type": "git",
    41                 "url": "git://github.com/inspect-js/is-typed-array.git"
    42         },
    43         "keywords": [
    44                 "array",
    45                 "TypedArray",
    46                 "typed array",
    47                 "is",
    48                 "typed",
    49                 "Int8Array",
    50                 "Uint8Array",
    51                 "Uint8ClampedArray",
    52                 "Int16Array",
    53                 "Uint16Array",
    54                 "Int32Array",
    55                 "Uint32Array",
    56                 "Float32Array",
    57                 "Float64Array",
    58                 "ES6",
    59                 "toStringTag",
    60                 "Symbol.toStringTag",
    61                 "@@toStringTag"
    62         ],
    63         "dependencies": {
    64                 "which-typed-array": "^1.1.14"
    65         },
    66         "devDependencies": {
    67                 "@ljharb/eslint-config": "^21.1.0",
    68                 "@types/for-each": "^0.3.3",
    69                 "@types/is-callable": "^1.1.2",
    70                 "@types/make-arrow-function": "^1.2.2",
    71                 "@types/make-generator-function": "^2.0.3",
    72                 "@types/node": "^20.11.14",
    73                 "@types/object-inspect": "^1.8.4",
    74                 "@types/tape": "^5.6.4",
    75                 "aud": "^2.0.4",
    76                 "auto-changelog": "^2.4.0",
    77                 "eslint": "=8.8.0",
    78                 "evalmd": "^0.0.19",
    79                 "for-each": "^0.3.3",
    80                 "has-tostringtag": "^1.0.1",
    81                 "in-publish": "^2.0.1",
    82                 "is-callable": "^1.2.7",
    83                 "make-arrow-function": "^1.2.0",
    84                 "make-generator-function": "^2.0.0",
    85                 "npmignore": "^0.3.1",
    86                 "nyc": "^10.3.2",
    87                 "object-inspect": "^1.13.1",
    88                 "safe-publish-latest": "^2.0.0",
    89                 "tape": "^5.7.4",
    90                 "typescript": "next"
    91         },
    92         "testling": {
    93                 "files": "test/index.js",
    94                 "browsers": [
    95                         "iexplore/6.0..latest",
    96                         "firefox/3.0..6.0",
    97                         "firefox/15.0..latest",
    98                         "firefox/nightly",
    99                         "chrome/4.0..10.0",
    100                         "chrome/20.0..latest",
    101                         "chrome/canary",
    102                         "opera/10.0..latest",
    103                         "opera/next",
    104                         "safari/4.0..latest",
    105                         "ipad/6.0..latest",
    106                         "iphone/6.0..latest",
    107                         "android-browser/4.2"
    108                 ]
    109         },
    110         "engines": {
    111                 "node": ">= 0.4"
    112         },
    113         "auto-changelog": {
    114                 "output": "CHANGELOG.md",
    115                 "template": "keepachangelog",
    116                 "unreleased": false,
    117                 "commitLimit": false,
    118                 "backfillLimit": false,
    119                 "hideCredit": true,
    120                 "startingVersion": "1.1.10"
    121         },
    122         "publishConfig": {
    123                 "ignore": [
    124                         ".github/workflows"
    125                 ]
    126         }
     2  "_from": "is-typed-array@^1.1.15",
     3  "_id": "is-typed-array@1.1.15",
     4  "_inBundle": false,
     5  "_integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
     6  "_location": "/is-typed-array",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "range",
     10    "registry": true,
     11    "raw": "is-typed-array@^1.1.15",
     12    "name": "is-typed-array",
     13    "escapedName": "is-typed-array",
     14    "rawSpec": "^1.1.15",
     15    "saveSpec": null,
     16    "fetchSpec": "^1.1.15"
     17  },
     18  "_requiredBy": [
     19    "/es-abstract",
     20    "/is-data-view",
     21    "/typed-array-buffer",
     22    "/typed-array-byte-length",
     23    "/typed-array-byte-offset",
     24    "/typed-array-length"
     25  ],
     26  "_resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
     27  "_shasum": "4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b",
     28  "_spec": "is-typed-array@^1.1.15",
     29  "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract",
     30  "author": {
     31    "name": "Jordan Harband",
     32    "email": "ljharb@gmail.com",
     33    "url": "http://ljharb.codes"
     34  },
     35  "auto-changelog": {
     36    "output": "CHANGELOG.md",
     37    "template": "keepachangelog",
     38    "unreleased": false,
     39    "commitLimit": false,
     40    "backfillLimit": false,
     41    "hideCredit": true,
     42    "startingVersion": "1.1.10"
     43  },
     44  "bugs": {
     45    "url": "https://github.com/inspect-js/is-typed-array/issues"
     46  },
     47  "bundleDependencies": false,
     48  "contributors": [
     49    {
     50      "name": "Jordan Harband",
     51      "email": "ljharb@gmail.com",
     52      "url": "http://ljharb.codes"
     53    }
     54  ],
     55  "dependencies": {
     56    "which-typed-array": "^1.1.16"
     57  },
     58  "deprecated": false,
     59  "description": "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
     60  "devDependencies": {
     61    "@arethetypeswrong/cli": "^0.17.1",
     62    "@ljharb/eslint-config": "^21.1.1",
     63    "@ljharb/tsconfig": "^0.2.2",
     64    "@types/for-each": "^0.3.3",
     65    "@types/is-callable": "^1.1.2",
     66    "@types/make-arrow-function": "^1.2.2",
     67    "@types/make-generator-function": "^2.0.3",
     68    "@types/node": "^20.17.10",
     69    "@types/object-inspect": "^1.13.0",
     70    "@types/tape": "^5.8.0",
     71    "auto-changelog": "^2.5.0",
     72    "encoding": "^0.1.13",
     73    "eslint": "=8.8.0",
     74    "evalmd": "^0.0.19",
     75    "for-each": "^0.3.3",
     76    "has-tostringtag": "^1.0.2",
     77    "in-publish": "^2.0.1",
     78    "is-callable": "^1.2.7",
     79    "make-arrow-function": "^1.2.0",
     80    "make-generator-function": "^2.0.0",
     81    "npmignore": "^0.3.1",
     82    "nyc": "^10.3.2",
     83    "object-inspect": "^1.13.3",
     84    "safe-publish-latest": "^2.0.0",
     85    "tape": "^5.9.0",
     86    "typescript": "next"
     87  },
     88  "engines": {
     89    "node": ">= 0.4"
     90  },
     91  "funding": {
     92    "url": "https://github.com/sponsors/ljharb"
     93  },
     94  "homepage": "https://github.com/inspect-js/is-typed-array#readme",
     95  "keywords": [
     96    "array",
     97    "TypedArray",
     98    "typed array",
     99    "is",
     100    "typed",
     101    "Int8Array",
     102    "Uint8Array",
     103    "Uint8ClampedArray",
     104    "Int16Array",
     105    "Uint16Array",
     106    "Int32Array",
     107    "Uint32Array",
     108    "Float32Array",
     109    "Float64Array",
     110    "ES6",
     111    "toStringTag",
     112    "Symbol.toStringTag",
     113    "@@toStringTag"
     114  ],
     115  "license": "MIT",
     116  "main": "index.js",
     117  "name": "is-typed-array",
     118  "publishConfig": {
     119    "ignore": [
     120      ".github/workflows"
     121    ]
     122  },
     123  "repository": {
     124    "type": "git",
     125    "url": "git://github.com/inspect-js/is-typed-array.git"
     126  },
     127  "scripts": {
     128    "lint": "eslint --ext=js,mjs .",
     129    "postlint": "tsc -p . && attw -P",
     130    "posttest": "npx npm@'>= 10.2' audit --production",
     131    "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
     132    "prelint": "evalmd README.md",
     133    "prepack": "npmignore --auto --commentLines=autogenerated",
     134    "prepublish": "not-in-publish || npm run prepublishOnly",
     135    "prepublishOnly": "safe-publish-latest",
     136    "pretest": "npm run --silent lint",
     137    "test": "npm run tests-only && npm run test:harmony",
     138    "test:harmony": "nyc node --harmony --es-staging test",
     139    "tests-only": "nyc tape test",
     140    "version": "auto-changelog && git add CHANGELOG.md"
     141  },
     142  "sideEffects": false,
     143  "testling": {
     144    "files": "test/index.js",
     145    "browsers": [
     146      "iexplore/6.0..latest",
     147      "firefox/3.0..6.0",
     148      "firefox/15.0..latest",
     149      "firefox/nightly",
     150      "chrome/4.0..10.0",
     151      "chrome/20.0..latest",
     152      "chrome/canary",
     153      "opera/10.0..latest",
     154      "opera/next",
     155      "safari/4.0..latest",
     156      "ipad/6.0..latest",
     157      "iphone/6.0..latest",
     158      "android-browser/4.2"
     159    ]
     160  },
     161  "types": "./index.d.ts",
     162  "version": "1.1.15"
    127163}
  • imaps-frontend/node_modules/is-typed-array/tsconfig.json

    r0c6b92a r79a0317  
    11{
    2   "compilerOptions": {
    3     /* Visit https://aka.ms/tsconfig to read more about this file */
    4 
    5     /* Projects */
    6 
    7     /* Language and Environment */
    8     "target": "ESNext",                                  /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
    9     // "lib": [],                                        /* Specify a set of bundled library declaration files that describe the target runtime environment. */
    10     // "noLib": true,                                    /* Disable including any library files, including the default lib.d.ts. */
    11     "useDefineForClassFields": true,                     /* Emit ECMAScript-standard-compliant class fields. */
    12     // "moduleDetection": "auto",                        /* Control what method is used to detect module-format JS files. */
    13 
    14     /* Modules */
    15     "module": "commonjs",                                /* Specify what module code is generated. */
    16     // "rootDir": "./",                                  /* Specify the root folder within your source files. */
    17     // "moduleResolution": "node10",                     /* Specify how TypeScript looks up a file from a given module specifier. */
    18     // "baseUrl": "./",                                  /* Specify the base directory to resolve non-relative module names. */
    19     // "paths": {},                                      /* Specify a set of entries that re-map imports to additional lookup locations. */
    20     // "rootDirs": [],                                   /* Allow multiple folders to be treated as one when resolving modules. */
    21     "typeRoots": ["types"],                              /* Specify multiple folders that act like './node_modules/@types'. */
    22     "resolveJsonModule": true,                           /* Enable importing .json files. */
    23     // "allowArbitraryExtensions": true,                 /* Enable importing files with any extension, provided a declaration file is present. */
    24 
    25     /* JavaScript Support */
    26     "allowJs": true,                                     /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
    27     "checkJs": true,                                     /* Enable error reporting in type-checked JavaScript files. */
    28     "maxNodeModuleJsDepth": 0,                           /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
    29 
    30     /* Emit */
    31     "declaration": true,                                 /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
    32     "declarationMap": true,                              /* Create sourcemaps for d.ts files. */
    33     "noEmit": true,                                      /* Disable emitting files from a compilation. */
    34 
    35     /* Interop Constraints */
    36     "allowSyntheticDefaultImports": true,                /* Allow 'import x from y' when a module doesn't have a default export. */
    37     "esModuleInterop": true,                             /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
    38     "forceConsistentCasingInFileNames": true,            /* Ensure that casing is correct in imports. */
    39 
    40     /* Type Checking */
    41     "strict": true,                                      /* Enable all strict type-checking options. */
    42 
    43     /* Completeness */
    44     //"skipLibCheck": true                                 /* Skip type checking all .d.ts files. */
    45   },
    46   "exclude": [
    47     "coverage"
    48   ]
     2        "extends": "@ljharb/tsconfig",
     3        "exclude": [
     4                "coverage",
     5        ],
    496}
Note: See TracChangeset for help on using the changeset viewer.