Changeset 79a0317 for imaps-frontend/node_modules/which-typed-array
- Timestamp:
- 01/21/25 03:08:24 (4 weeks ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/which-typed-array
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/which-typed-array/CHANGELOG.md
r0c6b92a r79a0317 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [v1.1.18](https://github.com/inspect-js/which-typed-array/compare/v1.1.17...v1.1.18) - 2024-12-18 9 10 ### Commits 11 12 - [types] improve types [`4b57173`](https://github.com/inspect-js/which-typed-array/commit/4b5717349976578c6b48966d581687df5dcc2e9b) 13 - [Dev Deps] update `@types/tape` [`81853b0`](https://github.com/inspect-js/which-typed-array/commit/81853b075c018538859a5533578be654fafecdae) 14 15 ## [v1.1.17](https://github.com/inspect-js/which-typed-array/compare/v1.1.16...v1.1.17) - 2024-12-18 16 17 ### Commits 18 19 - [types] improve types [`86bc612`](https://github.com/inspect-js/which-typed-array/commit/86bc61207e5970c2c7e13cdda4ccdeb0981ac40b) 20 - [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape` [`2e9bed6`](https://github.com/inspect-js/which-typed-array/commit/2e9bed67f1d623b176b1a7f06c5eab006c21cf96) 21 - [Deps] update `call-bind`, `gopd` [`34579df`](https://github.com/inspect-js/which-typed-array/commit/34579df639e35ceb3a7e54f8e680a4077a950b8b) 22 - [Refactor] use `call-bound` directly [`2a2d84e`](https://github.com/inspect-js/which-typed-array/commit/2a2d84e91045266841ddb47afe594899bae2f483) 7 23 8 24 ## [v1.1.16](https://github.com/inspect-js/which-typed-array/compare/v1.1.15...v1.1.16) - 2024-11-27 -
imaps-frontend/node_modules/which-typed-array/index.d.ts
r0c6b92a r79a0317 20 20 21 21 declare namespace whichTypedArray { 22 type TypedArrayName =22 export type TypedArrayName = 23 23 | 'Int8Array' 24 24 | 'Uint8Array' … … 33 33 | 'BigUint64Array'; 34 34 35 type TypedArray =36 37 38 39 40 41 42 43 44 45 46 35 export type TypedArray = 36 | Int8Array 37 | Uint8Array 38 | Uint8ClampedArray 39 | Int16Array 40 | Uint16Array 41 | Int32Array 42 | Uint32Array 43 | Float32Array 44 | Float64Array 45 | BigInt64Array 46 | BigUint64Array; 47 47 48 type TypedArrayConstructor =48 export type TypedArrayConstructor = 49 49 | Int8ArrayConstructor 50 50 | Uint8ArrayConstructor -
imaps-frontend/node_modules/which-typed-array/index.js
r0c6b92a r79a0317 4 4 var availableTypedArrays = require('available-typed-arrays'); 5 5 var callBind = require('call-bind'); 6 var callBound = require('call-b ind/callBound');6 var callBound = require('call-bound'); 7 7 var gOPD = require('gopd'); 8 8 -
imaps-frontend/node_modules/which-typed-array/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "which-typed-array", 3 "version": "1.1.16", 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": "Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite 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 "pretest": "npm run --silent lint", 29 "test": "npm run tests-only && npm run test:harmony", 30 "tests-only": "nyc tape test", 31 "test:harmony": "nyc node --harmony --es-staging test", 32 "posttest": "npx npm@'>=10.2' audit --production", 33 "lint": "eslint --ext=js,mjs .", 34 "postlint": "tsc -p . && attw -P", 35 "version": "auto-changelog && git add CHANGELOG.md", 36 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 37 }, 38 "repository": { 39 "type": "git", 40 "url": "git://github.com/inspect-js/which-typed-array.git" 41 }, 42 "keywords": [ 43 "array", 44 "TypedArray", 45 "typed array", 46 "which", 47 "typed", 48 "Int8Array", 49 "Uint8Array", 50 "Uint8ClampedArray", 51 "Int16Array", 52 "Uint16Array", 53 "Int32Array", 54 "Uint32Array", 55 "Float32Array", 56 "Float64Array", 57 "ES6", 58 "toStringTag", 59 "Symbol.toStringTag", 60 "@@toStringTag" 61 ], 62 "dependencies": { 63 "available-typed-arrays": "^1.0.7", 64 "call-bind": "^1.0.7", 65 "for-each": "^0.3.3", 66 "gopd": "^1.0.1", 67 "has-tostringtag": "^1.0.2" 68 }, 69 "devDependencies": { 70 "@arethetypeswrong/cli": "^0.17.0", 71 "@ljharb/eslint-config": "^21.1.1", 72 "@ljharb/tsconfig": "^0.2.0", 73 "@types/call-bind": "^1.0.5", 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/tape": "^5.6.5", 80 "auto-changelog": "^2.5.0", 81 "encoding": "^0.1.13", 82 "eslint": "=8.8.0", 83 "in-publish": "^2.0.1", 84 "is-callable": "^1.2.7", 85 "make-arrow-function": "^1.2.0", 86 "make-generator-function": "^2.0.0", 87 "npmignore": "^0.3.1", 88 "nyc": "^10.3.2", 89 "safe-publish-latest": "^2.0.0", 90 "tape": "^5.9.0", 91 "typescript": "next" 92 }, 93 "testling": { 94 "files": "test/index.js", 95 "browsers": [ 96 "iexplore/6.0..latest", 97 "firefox/3.0..6.0", 98 "firefox/15.0..latest", 99 "firefox/nightly", 100 "chrome/4.0..10.0", 101 "chrome/20.0..latest", 102 "chrome/canary", 103 "opera/10.0..latest", 104 "opera/next", 105 "safari/4.0..latest", 106 "ipad/6.0..latest", 107 "iphone/6.0..latest", 108 "android-browser/4.2" 109 ] 110 }, 111 "engines": { 112 "node": ">= 0.4" 113 }, 114 "auto-changelog": { 115 "output": "CHANGELOG.md", 116 "template": "keepachangelog", 117 "unreleased": false, 118 "commitLimit": false, 119 "backfillLimit": false, 120 "hideCredit": true 121 }, 122 "publishConfig": { 123 "ignore": [ 124 ".github/workflows" 125 ] 126 } 2 "_from": "which-typed-array@^1.1.18", 3 "_id": "which-typed-array@1.1.18", 4 "_inBundle": false, 5 "_integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", 6 "_location": "/which-typed-array", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "which-typed-array@^1.1.18", 12 "name": "which-typed-array", 13 "escapedName": "which-typed-array", 14 "rawSpec": "^1.1.18", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.18" 17 }, 18 "_requiredBy": [ 19 "/es-abstract", 20 "/is-typed-array", 21 "/which-builtin-type" 22 ], 23 "_resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", 24 "_shasum": "df2389ebf3fbb246a71390e90730a9edb6ce17ad", 25 "_spec": "which-typed-array@^1.1.18", 26 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract", 27 "author": { 28 "name": "Jordan Harband", 29 "email": "ljharb@gmail.com", 30 "url": "http://ljharb.codes" 31 }, 32 "auto-changelog": { 33 "output": "CHANGELOG.md", 34 "template": "keepachangelog", 35 "unreleased": false, 36 "commitLimit": false, 37 "backfillLimit": false, 38 "hideCredit": true 39 }, 40 "bugs": { 41 "url": "https://github.com/inspect-js/which-typed-array/issues" 42 }, 43 "bundleDependencies": false, 44 "contributors": [ 45 { 46 "name": "Jordan Harband", 47 "email": "ljharb@gmail.com", 48 "url": "http://ljharb.codes" 49 } 50 ], 51 "dependencies": { 52 "available-typed-arrays": "^1.0.7", 53 "call-bind": "^1.0.8", 54 "call-bound": "^1.0.3", 55 "for-each": "^0.3.3", 56 "gopd": "^1.2.0", 57 "has-tostringtag": "^1.0.2" 58 }, 59 "deprecated": false, 60 "description": "Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.", 61 "devDependencies": { 62 "@arethetypeswrong/cli": "^0.17.1", 63 "@ljharb/eslint-config": "^21.1.1", 64 "@ljharb/tsconfig": "^0.2.2", 65 "@types/call-bind": "^1.0.5", 66 "@types/for-each": "^0.3.3", 67 "@types/gopd": "^1.0.3", 68 "@types/is-callable": "^1.1.2", 69 "@types/make-arrow-function": "^1.2.2", 70 "@types/make-generator-function": "^2.0.3", 71 "@types/tape": "^5.8.0", 72 "auto-changelog": "^2.5.0", 73 "encoding": "^0.1.13", 74 "eslint": "=8.8.0", 75 "in-publish": "^2.0.1", 76 "is-callable": "^1.2.7", 77 "make-arrow-function": "^1.2.0", 78 "make-generator-function": "^2.0.0", 79 "npmignore": "^0.3.1", 80 "nyc": "^10.3.2", 81 "safe-publish-latest": "^2.0.0", 82 "tape": "^5.9.0", 83 "typescript": "next" 84 }, 85 "engines": { 86 "node": ">= 0.4" 87 }, 88 "funding": { 89 "url": "https://github.com/sponsors/ljharb" 90 }, 91 "homepage": "https://github.com/inspect-js/which-typed-array#readme", 92 "keywords": [ 93 "array", 94 "TypedArray", 95 "typed array", 96 "which", 97 "typed", 98 "Int8Array", 99 "Uint8Array", 100 "Uint8ClampedArray", 101 "Int16Array", 102 "Uint16Array", 103 "Int32Array", 104 "Uint32Array", 105 "Float32Array", 106 "Float64Array", 107 "ES6", 108 "toStringTag", 109 "Symbol.toStringTag", 110 "@@toStringTag" 111 ], 112 "license": "MIT", 113 "main": "index.js", 114 "name": "which-typed-array", 115 "publishConfig": { 116 "ignore": [ 117 ".github/workflows" 118 ] 119 }, 120 "repository": { 121 "type": "git", 122 "url": "git://github.com/inspect-js/which-typed-array.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 "prepack": "npmignore --auto --commentLines=autogenerated", 130 "prepublish": "not-in-publish || npm run prepublishOnly", 131 "prepublishOnly": "safe-publish-latest", 132 "pretest": "npm run --silent lint", 133 "test": "npm run tests-only && npm run test:harmony", 134 "test:harmony": "nyc node --harmony --es-staging test", 135 "tests-only": "nyc tape test", 136 "version": "auto-changelog && git add CHANGELOG.md" 137 }, 138 "sideEffects": false, 139 "testling": { 140 "files": "test/index.js", 141 "browsers": [ 142 "iexplore/6.0..latest", 143 "firefox/3.0..6.0", 144 "firefox/15.0..latest", 145 "firefox/nightly", 146 "chrome/4.0..10.0", 147 "chrome/20.0..latest", 148 "chrome/canary", 149 "opera/10.0..latest", 150 "opera/next", 151 "safari/4.0..latest", 152 "ipad/6.0..latest", 153 "iphone/6.0..latest", 154 "android-browser/4.2" 155 ] 156 }, 157 "types": "./index.d.ts", 158 "version": "1.1.18" 127 159 }
Note:
See TracChangeset
for help on using the changeset viewer.