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/array-buffer-byte-length
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/array-buffer-byte-length/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.2](https://github.com/inspect-js/array-buffer-byte-length/compare/v1.0.1...v1.0.2) - 2024-12-19
     9
     10### Commits
     11
     12- [types] use shared config [`b15321c`](https://github.com/inspect-js/array-buffer-byte-length/commit/b15321cf546dae5d3bc2b354fb8e2a4629d6afb3)
     13- [actions] split out node 10-20, and 20+ [`fa1eb7d`](https://github.com/inspect-js/array-buffer-byte-length/commit/fa1eb7df107d382b47d7b9e7a07e1c4588e81cbd)
     14- [Dev Deps] update `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`53e3f93`](https://github.com/inspect-js/array-buffer-byte-length/commit/53e3f93c456b7a8a8217a832b48c416962a176e0)
     15- [Tests] replace `aud` with `npm audit` [`2d1b66f`](https://github.com/inspect-js/array-buffer-byte-length/commit/2d1b66ff6417b825f58adf859b540c2303d2dbde)
     16- [Refactor] use `call-bound` directly [`433be34`](https://github.com/inspect-js/array-buffer-byte-length/commit/433be3427e20526d74ab1faaaf0117aaf967f406)
     17- [Deps] update `call-bind`, `is-array-buffer` [`4ff7467`](https://github.com/inspect-js/array-buffer-byte-length/commit/4ff74673567dcae00e5a8c5d4d0f8c23b29c9a0a)
     18- [Dev Deps] update `tape`, `typescript` [`42c9f19`](https://github.com/inspect-js/array-buffer-byte-length/commit/42c9f1998fe8630634388b6db2c0563be05c6897)
     19- [Tests] add attw [`29a72f1`](https://github.com/inspect-js/array-buffer-byte-length/commit/29a72f12eb83dcfaef6a6bed0403e56699669f27)
     20- [Deps] update `call-bind` [`1e9e902`](https://github.com/inspect-js/array-buffer-byte-length/commit/1e9e90292388a609aa0e722bddbc9313a575ef10)
     21- [types] remove incorrect overload [`b509518`](https://github.com/inspect-js/array-buffer-byte-length/commit/b509518bc188f79c46aa851311f20c188faa0678)
     22- [Dev Deps] add missing peer dep [`31962b6`](https://github.com/inspect-js/array-buffer-byte-length/commit/31962b631a173696ceef94e9d00edf13af87d305)
    723
    824## [v1.0.1](https://github.com/inspect-js/array-buffer-byte-length/compare/v1.0.0...v1.0.1) - 2024-02-03
  • imaps-frontend/node_modules/array-buffer-byte-length/index.js

    r0c6b92a r79a0317  
    11'use strict';
    22
    3 var callBound = require('call-bind/callBound');
     3var callBound = require('call-bound');
    44var $byteLength = callBound('ArrayBuffer.prototype.byteLength', true);
    55
  • imaps-frontend/node_modules/array-buffer-byte-length/package.json

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