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-shared-array-buffer
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/is-shared-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## [v1.0.4](https://github.com/inspect-js/is-shared-array-buffer/compare/v1.0.3...v1.0.4) - 2024-12-18
     9
     10### Commits
     11
     12- [types] use shared config [`2966419`](https://github.com/inspect-js/is-shared-array-buffer/commit/2966419ac786ee171a38b80e77b21becc59fd7be)
     13- [actions] split out node 10-20, and 20+ [`9961138`](https://github.com/inspect-js/is-shared-array-buffer/commit/9961138844e05cf66846597410110aa92dfbf5cb)
     14- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/node`, `@types/object-inspect`, `@types/tape auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`a808a5d`](https://github.com/inspect-js/is-shared-array-buffer/commit/a808a5d53445f9d498d6d445b728fde63eac3fdb)
     15- [Refactor] use `call-bound` directly [`5235143`](https://github.com/inspect-js/is-shared-array-buffer/commit/5235143ef80f1c2e5f5168fd445db386a3b82224)
     16- [Tests] replace `aud` with `npm audit` [`954a0c7`](https://github.com/inspect-js/is-shared-array-buffer/commit/954a0c7c4922f8c034b7d7258b1f28337dc59746)
     17- [Tests] use `@arethetypeswrong/cli` [`0ba297a`](https://github.com/inspect-js/is-shared-array-buffer/commit/0ba297a7b243380179d982761cd96a04aa33e108)
     18- [Deps] update `call-bind` [`d5c5bab`](https://github.com/inspect-js/is-shared-array-buffer/commit/d5c5babb76e502c00d8982e6c551dddd648f2bcd)
     19- [Dev Deps] update `@types/node` [`705f5c7`](https://github.com/inspect-js/is-shared-array-buffer/commit/705f5c7dd5605fb4ac09fcb1041b3336f245bfb4)
     20- [Dev Deps] add missing peer dep [`4123434`](https://github.com/inspect-js/is-shared-array-buffer/commit/412343426cc6a264a5d7dcbfa673b4ca4248291d)
    721
    822## [v1.0.3](https://github.com/inspect-js/is-shared-array-buffer/compare/v1.0.2...v1.0.3) - 2024-02-20
  • imaps-frontend/node_modules/is-shared-array-buffer/index.js

    r0c6b92a r79a0317  
    11'use strict';
    22
    3 var callBound = require('call-bind/callBound');
     3var callBound = require('call-bound');
    44
     5/** @type {undefined | ((thisArg: SharedArrayBuffer) => number)} */
    56var $byteLength = callBound('SharedArrayBuffer.prototype.byteLength', true);
    67
     
    1213                }
    1314                try {
     15                        // @ts-expect-error TS can't figure out this closed-over variable is non-nullable, and it's fine that `obj` might not be a SAB
    1416                        $byteLength(obj);
    1517                        return true;
     
    1820                }
    1921        }
    20         : function isSharedArrayBuffer(obj) { // eslint-disable-line no-unused-vars
     22        : function isSharedArrayBuffer(_obj) { // eslint-disable-line no-unused-vars
    2123                return false;
    2224        };
  • imaps-frontend/node_modules/is-shared-array-buffer/package.json

    r0c6b92a r79a0317  
    11{
    2         "name": "is-shared-array-buffer",
    3         "version": "1.0.3",
    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         "description": "Is this value a JS SharedArrayBuffer?",
    13         "license": "MIT",
    14         "main": "index.js",
    15         "exports": {
    16                 ".": "./index.js",
    17                 "./package.json": "./package.json"
    18         },
    19         "sideEffects": false,
    20         "scripts": {
    21                 "prepack": "npmignore --auto --commentLines=autogenerated",
    22                 "prepublishOnly": "safe-publish-latest",
    23                 "prepublish": "not-in-publish || npm run prepublishOnly",
    24                 "lint": "eslint --ext=.js,.mjs .",
    25                 "postlint": "tsc -p .",
    26                 "pretest": "npm run lint",
    27                 "tests-only": "nyc tape 'test/**/*.js'",
    28                 "test": "npm run tests-only --",
    29                 "posttest": "aud --production",
    30                 "version": "auto-changelog && git add CHANGELOG.md",
    31                 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    32         },
    33         "repository": {
    34                 "type": "git",
    35                 "url": "git+https://github.com/inspect-js/is-shared-array-buffer.git"
    36         },
    37         "keywords": [
    38                 "javascript",
    39                 "ecmascript",
    40                 "is",
    41                 "sharedarraybuffer",
    42                 "shared",
    43                 "array",
    44                 "buffer"
    45         ],
    46         "bugs": {
    47                 "url": "https://github.com/inspect-js/is-shared-array-buffer/issues"
    48         },
    49         "homepage": "https://github.com/inspect-js/is-shared-array-buffer#readme",
    50         "devDependencies": {
    51                 "@ljharb/eslint-config": "^21.1.0",
    52                 "@types/call-bind": "^1.0.5",
    53                 "@types/es-value-fixtures": "^1.4.4",
    54                 "@types/for-each": "^0.3.3",
    55                 "@types/node": "^20.11.19",
    56                 "@types/object-inspect": "^1.8.4",
    57                 "@types/tape": "^5.6.4",
    58                 "aud": "^2.0.4",
    59                 "auto-changelog": "^2.4.0",
    60                 "available-typed-arrays": "^1.0.7",
    61                 "es-value-fixtures": "^1.4.2",
    62                 "eslint": "=8.8.0",
    63                 "for-each": "^0.3.3",
    64                 "in-publish": "^2.0.1",
    65                 "npmignore": "^0.3.1",
    66                 "nyc": "^10.3.2",
    67                 "object-inspect": "^1.13.1",
    68                 "safe-publish-latest": "^2.0.0",
    69                 "tape": "^5.7.5",
    70                 "typescript": "next"
    71         },
    72         "auto-changelog": {
    73                 "output": "CHANGELOG.md",
    74                 "template": "keepachangelog",
    75                 "unreleased": false,
    76                 "commitLimit": false,
    77                 "backfillLimit": false,
    78                 "hideCredit": true
    79         },
    80         "dependencies": {
    81                 "call-bind": "^1.0.7"
    82         },
    83         "publishConfig": {
    84                 "ignore": [
    85                         ".github/workflows"
    86                 ]
    87         },
    88         "engines": {
    89                 "node": ">= 0.4"
    90         }
     2  "_from": "is-shared-array-buffer@^1.0.4",
     3  "_id": "is-shared-array-buffer@1.0.4",
     4  "_inBundle": false,
     5  "_integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
     6  "_location": "/is-shared-array-buffer",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "range",
     10    "registry": true,
     11    "raw": "is-shared-array-buffer@^1.0.4",
     12    "name": "is-shared-array-buffer",
     13    "escapedName": "is-shared-array-buffer",
     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/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
     22  "_shasum": "9b67844bd9b7f246ba0708c3a93e34269c774f6f",
     23  "_spec": "is-shared-array-buffer@^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    "url": "http://ljharb.codes"
     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/is-shared-array-buffer/issues"
     40  },
     41  "bundleDependencies": false,
     42  "dependencies": {
     43    "call-bound": "^1.0.3"
     44  },
     45  "deprecated": false,
     46  "description": "Is this value a JS SharedArrayBuffer?",
     47  "devDependencies": {
     48    "@arethetypeswrong/cli": "^0.17.1",
     49    "@ljharb/eslint-config": "^21.1.1",
     50    "@ljharb/tsconfig": "^0.2.2",
     51    "@types/es-value-fixtures": "^1.4.4",
     52    "@types/for-each": "^0.3.3",
     53    "@types/node": "^20.17.10",
     54    "@types/object-inspect": "^1.13.0",
     55    "@types/tape": "^5.7.0",
     56    "auto-changelog": "^2.5.0",
     57    "available-typed-arrays": "^1.0.7",
     58    "encoding": "^0.1.13",
     59    "es-value-fixtures": "^1.5.0",
     60    "eslint": "=8.8.0",
     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/is-shared-array-buffer#readme",
     81  "keywords": [
     82    "javascript",
     83    "ecmascript",
     84    "is",
     85    "sharedarraybuffer",
     86    "shared",
     87    "array",
     88    "buffer"
     89  ],
     90  "license": "MIT",
     91  "main": "index.js",
     92  "name": "is-shared-array-buffer",
     93  "publishConfig": {
     94    "ignore": [
     95      ".github/workflows"
     96    ]
     97  },
     98  "repository": {
     99    "type": "git",
     100    "url": "git+https://github.com/inspect-js/is-shared-array-buffer.git"
     101  },
     102  "scripts": {
     103    "lint": "eslint --ext=.js,.mjs .",
     104    "postlint": "tsc -p . && attw -P",
     105    "posttest": "npx npm@'>= 10.2' audit --production",
     106    "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
     107    "prepack": "npmignore --auto --commentLines=autogenerated",
     108    "prepublish": "not-in-publish || npm run prepublishOnly",
     109    "prepublishOnly": "safe-publish-latest",
     110    "pretest": "npm run lint",
     111    "test": "npm run tests-only --",
     112    "tests-only": "nyc tape 'test/**/*.js'",
     113    "version": "auto-changelog && git add CHANGELOG.md"
     114  },
     115  "sideEffects": false,
     116  "version": "1.0.4"
    91117}
  • imaps-frontend/node_modules/is-shared-array-buffer/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        "compilerOptions": {
     4                "target": "ES2021",
     5        },
     6        "exclude": [
     7                "coverage",
     8        ],
    499}
Note: See TracChangeset for help on using the changeset viewer.