Changeset 79a0317 for imaps-frontend/node_modules/safe-array-concat
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/safe-array-concat
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/safe-array-concat/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.3](https://github.com/ljharb/safe-array-concat/compare/v1.1.2...v1.1.3) - 2024-12-11 9 10 ### Commits 11 12 - [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/get-intrinsic`, `@types/tape`, `auto-changelog`, `mock-property`, `tape` [`9452ca7`](https://github.com/ljharb/safe-array-concat/commit/9452ca7dc6e22d89fb1bbf4f604d3e058a6813c0) 13 - [actions] split out node 10-20, and 20+ [`8166059`](https://github.com/ljharb/safe-array-concat/commit/8166059134d555337faf7574f40c746deaecfa99) 14 - [Deps] update `call-bind`, `get-intrinsic`, `has-symbols` [`d35014a`](https://github.com/ljharb/safe-array-concat/commit/d35014a2f8240ca70c336ef694744726b03a042b) 15 - [Refactor] use `call-bound` directly [`0bdddbd`](https://github.com/ljharb/safe-array-concat/commit/0bdddbdbdd887f12ecc58ee9fd1f358ec13560d3) 16 - [Tests] replace `aud` with `npm audit` [`c62dae0`](https://github.com/ljharb/safe-array-concat/commit/c62dae04b6eb56c460132fdd6e10de432228757e) 17 - [Dev Deps] add missing peer dep [`4860aae`](https://github.com/ljharb/safe-array-concat/commit/4860aae938375ae69ecf1c8d6caf58632ca57715) 7 18 8 19 ## [v1.1.2](https://github.com/ljharb/safe-array-concat/compare/v1.1.1...v1.1.2) - 2024-03-09 -
imaps-frontend/node_modules/safe-array-concat/index.js
r0c6b92a r79a0317 6 6 var callBind = require('call-bind'); 7 7 8 var callBound = require('call-b ind/callBound');8 var callBound = require('call-bound'); 9 9 var $slice = callBound('Array.prototype.slice'); 10 10 -
imaps-frontend/node_modules/safe-array-concat/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "safe-array-concat", 3 "version": "1.1.2", 4 "description": "`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./package.json": "./package.json" 9 }, 10 "sideEffects": false, 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "version": "auto-changelog && git add CHANGELOG.md", 14 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 15 "prelint": "npm run tsc", 16 "lint": "eslint --ext=js,mjs .", 17 "tsc": "tsc -p .", 18 "posttsc": "attw -P", 19 "postlint": "evalmd README.md", 20 "prepublish": "not-in-publish || npm run prepublishOnly", 21 "prepublishOnly": "safe-publish-latest", 22 "pretest": "npm run lint", 23 "tests-only": "nyc tape test", 24 "test": "npm run tests-only", 25 "posttest": "aud --production" 26 }, 27 "keywords": [ 28 "safe", 29 "Array", 30 "concat", 31 "push", 32 "isConcatSpreadable" 33 ], 34 "author": "Jordan Harband <ljharb@gmail.com>", 35 "funding": { 36 "url": "https://github.com/sponsors/ljharb" 37 }, 38 "license": "MIT", 39 "repository": { 40 "type": "git", 41 "url": "git+https://github.com/ljharb/safe-array-concat.git" 42 }, 43 "bugs": { 44 "url": "https://github.com/ljharb/safe-array-concat/issues" 45 }, 46 "homepage": "https://github.com/ljharb/safe-array-concat#readme", 47 "devDependencies": { 48 "@arethetypeswrong/cli": "^0.15.1", 49 "@ljharb/eslint-config": "^21.1.0", 50 "@ljharb/tsconfig": "^0.2.0", 51 "@types/call-bind": "^1.0.5", 52 "@types/get-intrinsic": "^1.2.2", 53 "@types/has-symbols": "^1.0.2", 54 "@types/isarray": "^2.0.2", 55 "@types/mock-property": "^1.0.2", 56 "@types/tape": "^5.6.4", 57 "aud": "^2.0.4", 58 "auto-changelog": "^2.4.0", 59 "eslint": "=8.8.0", 60 "evalmd": "^0.0.19", 61 "in-publish": "^2.0.1", 62 "mock-property": "^1.0.3", 63 "npmignore": "^0.3.1", 64 "nyc": "^10.3.2", 65 "safe-publish-latest": "^2.0.0", 66 "set-function-length": "^1.2.2", 67 "tape": "^5.7.5", 68 "typescript": "next" 69 }, 70 "dependencies": { 71 "call-bind": "^1.0.7", 72 "get-intrinsic": "^1.2.4", 73 "has-symbols": "^1.0.3", 74 "isarray": "^2.0.5" 75 }, 76 "auto-changelog": { 77 "output": "CHANGELOG.md", 78 "template": "keepachangelog", 79 "unreleased": false, 80 "commitLimit": false, 81 "backfillLimit": false, 82 "hideCredit": true 83 }, 84 "publishConfig": { 85 "ignore": [ 86 ".github/workflows" 87 ] 88 }, 89 "engines": { 90 "node": ">=0.4" 91 } 2 "_from": "safe-array-concat@^1.1.3", 3 "_id": "safe-array-concat@1.1.3", 4 "_inBundle": false, 5 "_integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", 6 "_location": "/safe-array-concat", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "safe-array-concat@^1.1.3", 12 "name": "safe-array-concat", 13 "escapedName": "safe-array-concat", 14 "rawSpec": "^1.1.3", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.3" 17 }, 18 "_requiredBy": [ 19 "/es-abstract", 20 "/es-iterator-helpers" 21 ], 22 "_resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", 23 "_shasum": "c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3", 24 "_spec": "safe-array-concat@^1.1.3", 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/ljharb/safe-array-concat/issues" 40 }, 41 "bundleDependencies": false, 42 "dependencies": { 43 "call-bind": "^1.0.8", 44 "call-bound": "^1.0.2", 45 "get-intrinsic": "^1.2.6", 46 "has-symbols": "^1.1.0", 47 "isarray": "^2.0.5" 48 }, 49 "deprecated": false, 50 "description": "`Array.prototype.concat`, but made safe by ignoring Symbol.isConcatSpreadable", 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/get-intrinsic": "^1.2.3", 57 "@types/has-symbols": "^1.0.2", 58 "@types/isarray": "^2.0.2", 59 "@types/tape": "^5.6.5", 60 "auto-changelog": "^2.5.0", 61 "encoding": "^0.1.13", 62 "eslint": "=8.8.0", 63 "evalmd": "^0.0.19", 64 "in-publish": "^2.0.1", 65 "mock-property": "^1.1.0", 66 "npmignore": "^0.3.1", 67 "nyc": "^10.3.2", 68 "safe-publish-latest": "^2.0.0", 69 "set-function-length": "^1.2.2", 70 "tape": "^5.9.0", 71 "typescript": "next" 72 }, 73 "engines": { 74 "node": ">=0.4" 75 }, 76 "exports": { 77 ".": "./index.js", 78 "./package.json": "./package.json" 79 }, 80 "funding": { 81 "url": "https://github.com/sponsors/ljharb" 82 }, 83 "homepage": "https://github.com/ljharb/safe-array-concat#readme", 84 "keywords": [ 85 "safe", 86 "Array", 87 "concat", 88 "push", 89 "isConcatSpreadable" 90 ], 91 "license": "MIT", 92 "main": "index.js", 93 "name": "safe-array-concat", 94 "publishConfig": { 95 "ignore": [ 96 ".github/workflows" 97 ] 98 }, 99 "repository": { 100 "type": "git", 101 "url": "git+https://github.com/ljharb/safe-array-concat.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", 115 "version": "auto-changelog && git add CHANGELOG.md" 116 }, 117 "sideEffects": false, 118 "version": "1.1.3" 92 119 } -
imaps-frontend/node_modules/safe-array-concat/test/index.js
r0c6b92a r79a0317 68 68 // TS can't type narrow from tape's `skip` 69 69 if (isConcatSpreadable) { 70 st.teardown(mockProperty(String.prototype, isConcatSpreadable, { value: true })); 70 st.teardown(mockProperty( 71 // eslint-disable-next-line no-extra-parens 72 /** @type {Record<PropertyKey, unknown>} */ (/** @type {unknown} */ (String.prototype)), 73 isConcatSpreadable, 74 { value: true } 75 )); 71 76 72 77 var nonSpreadable = [1, 2];
Note:
See TracChangeset
for help on using the changeset viewer.