Changeset 79a0317 for imaps-frontend/node_modules/is-weakref
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/is-weakref
- Files:
-
- 2 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-weakref/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.0](https://github.com/inspect-js/is-weakref/compare/v1.0.2...v1.1.0) - 2024-12-13 9 10 ### Commits 11 12 - [meta] use `npmignore` to autogenerate an npmignore file [`34494a3`](https://github.com/inspect-js/is-weakref/commit/34494a3a7df0b144fbb55b578ee383d676a5b3df) 13 - [actions] split out node 10-20, and 20+ [`78cb11d`](https://github.com/inspect-js/is-weakref/commit/78cb11d8a02f028c9566f8a75cfc516d4f789c15) 14 - [New] add types [`f4ceaf5`](https://github.com/inspect-js/is-weakref/commit/f4ceaf53638c97c65ebe2342080acd931443833d) 15 - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`24fccf5`](https://github.com/inspect-js/is-weakref/commit/24fccf5ac81aa562a87fa5354fb9bb26e43fb95f) 16 - [actions] update rebase action to use reusable workflow [`b27c6e9`](https://github.com/inspect-js/is-weakref/commit/b27c6e90004d71627bebbac846213e980ea988ce) 17 - [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `object-inspect`, `tape` [`30fe836`](https://github.com/inspect-js/is-weakref/commit/30fe836a57043092f400739c0e5190d5651bf8db) 18 - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`0185ba7`](https://github.com/inspect-js/is-weakref/commit/0185ba74824e9122bdcc42b929a4d3017779041f) 19 - [Refactor] use `call-bound` directly [`641d87c`](https://github.com/inspect-js/is-weakref/commit/641d87c36f6a7a19fafee6840be5fe06e216b355) 20 - [meta] add missing `engines.node` [`8543506`](https://github.com/inspect-js/is-weakref/commit/8543506b1a11dca0c7d041d5e822acae4a027f0b) 21 - [Tests] replace `aud` with `npm audit` [`883c75c`](https://github.com/inspect-js/is-weakref/commit/883c75cfa404dbbf1aba2547c023ee48745baad0) 22 - [Deps] update `call-bind` [`805de0e`](https://github.com/inspect-js/is-weakref/commit/805de0e6b9649bceb144cb323bcadc499ff42d66) 23 - [Deps] update `call-bind` [`6a7ee43`](https://github.com/inspect-js/is-weakref/commit/6a7ee43f7bd6a9197daa7f9fcd0378c22d7066ca) 24 - [Dev Deps] update `object-inspect` [`d3d6a99`](https://github.com/inspect-js/is-weakref/commit/d3d6a992e4ac41e93743b25556c4adeee3f0ab05) 25 - [meta] add `sideEffects` flag [`2b13054`](https://github.com/inspect-js/is-weakref/commit/2b13054ee66de02d38fdf3d18d61552c871ac5a3) 26 - [Dev Deps] add missing peer dep [`54cb0bc`](https://github.com/inspect-js/is-weakref/commit/54cb0bc2d4bd1aa11714d15feb671e3dc085eaf0) 7 27 8 28 ## [v1.0.2](https://github.com/inspect-js/is-weakref/compare/v1.0.1...v1.0.2) - 2021-12-10 -
imaps-frontend/node_modules/is-weakref/index.js
r0c6b92a r79a0317 1 1 'use strict'; 2 2 3 var callBound = require('call-b ind/callBound');3 var callBound = require('call-bound'); 4 4 5 5 var $deref = callBound('WeakRef.prototype.deref', true); 6 6 7 /** @type {import('.')} */ 7 8 module.exports = typeof WeakRef === 'undefined' 8 ? function isWeakRef( value) { // eslint-disable-line no-unused-vars9 ? function isWeakRef(_value) { // eslint-disable-line no-unused-vars 9 10 return false; 10 11 } -
imaps-frontend/node_modules/is-weakref/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "is-weakref", 3 "version": "1.0.2", 4 "description": "Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./package.json": "./package.json" 9 }, 10 "scripts": { 11 "version": "auto-changelog && git add CHANGELOG.md", 12 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 13 "prepublishOnly": "safe-publish-latest", 14 "prepublish": "not-in-publish || npm run prepublishOnly", 15 "lint": "eslint --ext=js,mjs .", 16 "pretest": "npm run lint", 17 "tests-only": "nyc tape 'test/**/*.js'", 18 "test": "npm run tests-only", 19 "posttest": "aud --production" 20 }, 21 "repository": { 22 "type": "git", 23 "url": "git+https://github.com/inspect-js/is-weakref.git" 24 }, 25 "keywords": [ 26 "weakref", 27 "weak", 28 "ref", 29 "finalization", 30 "finalization registry" 31 ], 32 "author": "Jordan Harband <ljharb@gmail.com>", 33 "funding": { 34 "url": "https://github.com/sponsors/ljharb" 35 }, 36 "license": "MIT", 37 "bugs": { 38 "url": "https://github.com/inspect-js/is-weakref/issues" 39 }, 40 "homepage": "https://github.com/inspect-js/is-weakref#readme", 41 "devDependencies": { 42 "@ljharb/eslint-config": "^20.0.0", 43 "aud": "^1.1.5", 44 "auto-changelog": "^2.3.0", 45 "eslint": "^8.4.1", 46 "for-each": "^0.3.3", 47 "nyc": "^10.3.2", 48 "object-inspect": "^1.11.1", 49 "safe-publish-latest": "^2.0.0", 50 "tape": "^5.3.2" 51 }, 52 "dependencies": { 53 "call-bind": "^1.0.2" 54 }, 55 "auto-changelog": { 56 "output": "CHANGELOG.md", 57 "template": "keepachangelog", 58 "unreleased": false, 59 "commitLimit": false, 60 "backfillLimit": false, 61 "hideCredit": true 62 } 2 "_from": "is-weakref@^1.1.0", 3 "_id": "is-weakref@1.1.0", 4 "_inBundle": false, 5 "_integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==", 6 "_location": "/is-weakref", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "is-weakref@^1.1.0", 12 "name": "is-weakref", 13 "escapedName": "is-weakref", 14 "rawSpec": "^1.1.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.0" 17 }, 18 "_requiredBy": [ 19 "/es-abstract", 20 "/which-builtin-type" 21 ], 22 "_resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz", 23 "_shasum": "47e3472ae95a63fa9cf25660bcf0c181c39770ef", 24 "_spec": "is-weakref@^1.1.0", 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/is-weakref/issues" 40 }, 41 "bundleDependencies": false, 42 "dependencies": { 43 "call-bound": "^1.0.2" 44 }, 45 "deprecated": false, 46 "description": "Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", 47 "devDependencies": { 48 "@arethetypeswrong/cli": "^0.17.1", 49 "@ljharb/eslint-config": "^21.1.1", 50 "@ljharb/tsconfig": "^0.2.2", 51 "@types/for-each": "^0.3.3", 52 "@types/object-inspect": "^1.13.0", 53 "@types/tape": "^5.6.5", 54 "auto-changelog": "^2.5.0", 55 "encoding": "^0.1.13", 56 "eslint": "=8.8.0", 57 "for-each": "^0.3.3", 58 "in-publish": "^2.0.1", 59 "npmignore": "^0.3.1", 60 "nyc": "^10.3.2", 61 "object-inspect": "^1.13.3", 62 "safe-publish-latest": "^2.0.0", 63 "tape": "^5.9.0", 64 "typescript": "next" 65 }, 66 "engines": { 67 "node": ">= 0.4" 68 }, 69 "exports": { 70 ".": "./index.js", 71 "./package.json": "./package.json" 72 }, 73 "funding": { 74 "url": "https://github.com/sponsors/ljharb" 75 }, 76 "homepage": "https://github.com/inspect-js/is-weakref#readme", 77 "keywords": [ 78 "weakref", 79 "weak", 80 "ref", 81 "finalization", 82 "finalization registry" 83 ], 84 "license": "MIT", 85 "main": "index.js", 86 "name": "is-weakref", 87 "publishConfig": { 88 "ignore": [ 89 ".github/workflows" 90 ] 91 }, 92 "repository": { 93 "type": "git", 94 "url": "git+https://github.com/inspect-js/is-weakref.git" 95 }, 96 "scripts": { 97 "lint": "eslint --ext=js,mjs .", 98 "postlint": "tsc && attw -P", 99 "posttest": "npx npm@'>=10.2' audit --production", 100 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 101 "prepack": "npmignore --auto --commentLines=autogenerated", 102 "prepublish": "not-in-publish || npm run prepublishOnly", 103 "prepublishOnly": "safe-publish-latest", 104 "pretest": "npm run lint", 105 "test": "npm run tests-only", 106 "tests-only": "nyc tape 'test/**/*.js'", 107 "version": "auto-changelog && git add CHANGELOG.md" 108 }, 109 "sideEffects": false, 110 "version": "1.1.0" 63 111 }
Note:
See TracChangeset
for help on using the changeset viewer.