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

F4 Finalna Verzija

Location:
imaps-frontend/node_modules/is-array-buffer
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/is-array-buffer/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## [v3.0.5](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.4...v3.0.5) - 2024-12-16
     9
     10### Commits
     11
     12- [types] use shared config [`6180b31`](https://github.com/fengyuanchen/is-array-buffer/commit/6180b3180cd15a49e6394cb6de0ae2667124d3f7)
     13- [actions] split out node 10-20, and 20+ [`1ea4712`](https://github.com/fengyuanchen/is-array-buffer/commit/1ea471223e393bfc124fdecdbeb23fe08209514f)
     14- [Dev Deps] update `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/get-intrinsic`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`de2b6ab`](https://github.com/fengyuanchen/is-array-buffer/commit/de2b6aba5e88b382bd6707409aa39822707fed50)
     15- [Deps] update `call-bind`, `get-intrinsic` [`55b80a1`](https://github.com/fengyuanchen/is-array-buffer/commit/55b80a10ae9151e1bd52382610d7330f37a1dc05)
     16- [Deps] update `call-bind`, `get-intrinsic` [`184484a`](https://github.com/fengyuanchen/is-array-buffer/commit/184484ad7fd3a72426f78e2bce3246e8c23e9ccf)
     17- [Dev Deps] update `available-typed-arrays`, `tape` [`81582a7`](https://github.com/fengyuanchen/is-array-buffer/commit/81582a72d6ddb28f67ad542edcd673d6c01cc2c0)
     18- [Tests] add `@arethetypeswrong/cli` [`6d67841`](https://github.com/fengyuanchen/is-array-buffer/commit/6d6784170ec8a0b766428ce44be3157147860a09)
     19- [Refactor] use `call-bound` directly [`dd0bad1`](https://github.com/fengyuanchen/is-array-buffer/commit/dd0bad194e4ff0e5413be23d69018fa961ce4af7)
     20- [Tests] replace `aud` with `npm audit` [`99b62d1`](https://github.com/fengyuanchen/is-array-buffer/commit/99b62d1755b6965bbc236342215e28a10d6839a7)
     21- [Dev Deps] remove obsolete DT package [`9fc6971`](https://github.com/fengyuanchen/is-array-buffer/commit/9fc69715867796c5854fd5377d90da6f01fb981e)
     22- [Dev Deps] add missing peer dep [`a3b8dbb`](https://github.com/fengyuanchen/is-array-buffer/commit/a3b8dbb538c13abb8f1a4d4d9a682ec71c2f52f8)
    723
    824## [v3.0.4](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.3...v3.0.4) - 2024-02-02
  • imaps-frontend/node_modules/is-array-buffer/index.js

    r0c6b92a r79a0317  
    22
    33var callBind = require('call-bind');
    4 var callBound = require('call-bind/callBound');
     4var callBound = require('call-bound');
    55var GetIntrinsic = require('get-intrinsic');
    66
     
    3838                        return $toString(obj) === '[object ArrayBuffer]';
    3939                }
     40                // @ts-expect-error
    4041                : function isArrayBuffer(obj) { // eslint-disable-line no-unused-vars
    4142                        return false;
  • imaps-frontend/node_modules/is-array-buffer/package.json

    r0c6b92a r79a0317  
    11{
    2         "name": "is-array-buffer",
    3         "version": "3.0.4",
    4         "description": "Is this value a JS ArrayBuffer?",
    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                 "lint": "eslint --ext=.js,.mjs .",
    17                 "postlint": "tsc -p .",
    18                 "pretest": "npm run lint",
    19                 "tests-only": "nyc tape 'test/**/*.js'",
    20                 "test": "npm run tests-only --",
    21                 "posttest": "aud --production",
    22                 "version": "auto-changelog && git add CHANGELOG.md",
    23                 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    24         },
    25         "repository": {
    26                 "type": "git",
    27                 "url": "git+https://github.com/inspect-js/is-array-buffer.git"
    28         },
    29         "keywords": [
    30                 "javascript",
    31                 "ecmascript",
    32                 "is",
    33                 "arraybuffer",
    34                 "array",
    35                 "buffer"
    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/inspect-js/is-array-buffer/issues"
    44         },
    45         "homepage": "https://github.com/inspect-js/is-array-buffer#readme",
    46         "devDependencies": {
    47                 "@ljharb/eslint-config": "^21.1.0",
    48                 "@types/call-bind": "^1.0.5",
    49                 "@types/es-value-fixtures": "^1.4.4",
    50                 "@types/for-each": "^0.3.3",
    51                 "@types/get-intrinsic": "^1.2.2",
    52                 "@types/object-inspect": "^1.8.4",
    53                 "@types/tape": "^5.6.4",
    54                 "aud": "^2.0.4",
    55                 "auto-changelog": "^2.4.0",
    56                 "available-typed-arrays": "^1.0.6",
    57                 "es-value-fixtures": "^1.4.2",
    58                 "eslint": "=8.8.0",
    59                 "for-each": "^0.3.3",
    60                 "in-publish": "^2.0.1",
    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                 "typescript": "next"
    67         },
    68         "auto-changelog": {
    69                 "output": "CHANGELOG.md",
    70                 "template": "keepachangelog",
    71                 "unreleased": false,
    72                 "commitLimit": false,
    73                 "backfillLimit": false,
    74                 "hideCredit": true,
    75                 "startingVersion": "2.0.1"
    76         },
    77         "dependencies": {
    78                 "call-bind": "^1.0.2",
    79                 "get-intrinsic": "^1.2.1"
    80         },
    81         "publishConfig": {
    82                 "ignore": [
    83                         ".github/workflows"
    84                 ]
    85         },
    86         "engines": {
    87                 "node": ">= 0.4"
    88         }
     2  "_from": "is-array-buffer@^3.0.5",
     3  "_id": "is-array-buffer@3.0.5",
     4  "_inBundle": false,
     5  "_integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
     6  "_location": "/is-array-buffer",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "range",
     10    "registry": true,
     11    "raw": "is-array-buffer@^3.0.5",
     12    "name": "is-array-buffer",
     13    "escapedName": "is-array-buffer",
     14    "rawSpec": "^3.0.5",
     15    "saveSpec": null,
     16    "fetchSpec": "^3.0.5"
     17  },
     18  "_requiredBy": [
     19    "/array-buffer-byte-length",
     20    "/arraybuffer.prototype.slice",
     21    "/es-abstract"
     22  ],
     23  "_resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
     24  "_shasum": "65742e1e687bd2cc666253068fd8707fe4d44280",
     25  "_spec": "is-array-buffer@^3.0.5",
     26  "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract",
     27  "author": {
     28    "name": "Jordan Harband",
     29    "email": "ljharb@gmail.com"
     30  },
     31  "auto-changelog": {
     32    "output": "CHANGELOG.md",
     33    "template": "keepachangelog",
     34    "unreleased": false,
     35    "commitLimit": false,
     36    "backfillLimit": false,
     37    "hideCredit": true,
     38    "startingVersion": "2.0.1"
     39  },
     40  "bugs": {
     41    "url": "https://github.com/inspect-js/is-array-buffer/issues"
     42  },
     43  "bundleDependencies": false,
     44  "dependencies": {
     45    "call-bind": "^1.0.8",
     46    "call-bound": "^1.0.3",
     47    "get-intrinsic": "^1.2.6"
     48  },
     49  "deprecated": false,
     50  "description": "Is this value a JS ArrayBuffer?",
     51  "devDependencies": {
     52    "@arethetypeswrong/cli": "^0.17.1",
     53    "@ljharb/eslint-config": "^21.1.1",
     54    "@ljharb/tsconfig": "^0.2.2",
     55    "@types/call-bind": "^1.0.5",
     56    "@types/for-each": "^0.3.3",
     57    "@types/get-intrinsic": "^1.2.3",
     58    "@types/object-inspect": "^1.13.0",
     59    "@types/tape": "^5.7.0",
     60    "auto-changelog": "^2.5.0",
     61    "available-typed-arrays": "^1.0.7",
     62    "encoding": "^0.1.13",
     63    "es-value-fixtures": "^1.5.0",
     64    "eslint": "=8.8.0",
     65    "for-each": "^0.3.3",
     66    "in-publish": "^2.0.1",
     67    "npmignore": "^0.3.1",
     68    "nyc": "^10.3.2",
     69    "object-inspect": "^1.13.3",
     70    "safe-publish-latest": "^2.0.0",
     71    "tape": "^5.9.0",
     72    "typescript": "next"
     73  },
     74  "engines": {
     75    "node": ">= 0.4"
     76  },
     77  "exports": {
     78    ".": "./index.js",
     79    "./package.json": "./package.json"
     80  },
     81  "funding": {
     82    "url": "https://github.com/sponsors/ljharb"
     83  },
     84  "homepage": "https://github.com/inspect-js/is-array-buffer#readme",
     85  "keywords": [
     86    "javascript",
     87    "ecmascript",
     88    "is",
     89    "arraybuffer",
     90    "array",
     91    "buffer"
     92  ],
     93  "license": "MIT",
     94  "main": "index.js",
     95  "name": "is-array-buffer",
     96  "publishConfig": {
     97    "ignore": [
     98      ".github/workflows"
     99    ]
     100  },
     101  "repository": {
     102    "type": "git",
     103    "url": "git+https://github.com/inspect-js/is-array-buffer.git"
     104  },
     105  "scripts": {
     106    "lint": "eslint --ext=.js,.mjs .",
     107    "postlint": "tsc && attw -P",
     108    "posttest": "npx npm@'>= 10.2' audit --production",
     109    "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
     110    "prepack": "npmignore --auto --commentLines=autogenerated",
     111    "prepublish": "not-in-publish || npm run prepublishOnly",
     112    "prepublishOnly": "safe-publish-latest",
     113    "pretest": "npm run lint",
     114    "test": "npm run tests-only --",
     115    "tests-only": "nyc tape 'test/**/*.js'",
     116    "version": "auto-changelog && git add CHANGELOG.md"
     117  },
     118  "sideEffects": false,
     119  "types": "./index.d.ts",
     120  "version": "3.0.5"
    89121}
  • imaps-frontend/node_modules/is-array-buffer/test/index.js

    r0c6b92a r79a0317  
    2424
    2525        t.test('actual ArrayBuffer instances', { skip: typeof ArrayBuffer === 'undefined' }, function (st) {
    26                 // @ts-expect-error TS grumbles about 0 args
    2726                var ab = new ArrayBuffer();
    2827                st.equal(isArrayBuffer(ab), true, inspect(ab) + ' is an ArrayBuffer');
  • imaps-frontend/node_modules/is-array-buffer/tsconfig.json

    r0c6b92a r79a0317  
    11{
     2  "extends": "@ljharb/tsconfig",
    23  "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. */
     4    "target": "ES2021",
    455  },
    466  "exclude": [
    47     "coverage"
    48   ]
     7    "coverage",
     8  ],
    499}
Note: See TracChangeset for help on using the changeset viewer.