Changeset 79a0317 for imaps-frontend/node_modules/gopd
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/gopd
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/gopd/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.2.0](https://github.com/ljharb/gopd/compare/v1.1.0...v1.2.0) - 2024-12-03 9 10 ### Commits 11 12 - [New] add `gOPD` entry point; remove `get-intrinsic` [`5b61232`](https://github.com/ljharb/gopd/commit/5b61232dedea4591a314bcf16101b1961cee024e) 13 14 ## [v1.1.0](https://github.com/ljharb/gopd/compare/v1.0.1...v1.1.0) - 2024-11-29 15 16 ### Commits 17 18 - [New] add types [`f585e39`](https://github.com/ljharb/gopd/commit/f585e397886d270e4ba84e53d226e4f9ca2eb0e6) 19 - [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `tape` [`0b8e4fd`](https://github.com/ljharb/gopd/commit/0b8e4fded64397a7726a9daa144a6cc9a5e2edfa) 20 - [Dev Deps] update `aud`, `npmignore`, `tape` [`48378b2`](https://github.com/ljharb/gopd/commit/48378b2443f09a4f7efbd0fb6c3ee845a6cabcf3) 21 - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`78099ee`](https://github.com/ljharb/gopd/commit/78099eeed41bfdc134c912280483689cc8861c31) 22 - [Tests] replace `aud` with `npm audit` [`4e0d0ac`](https://github.com/ljharb/gopd/commit/4e0d0ac47619d24a75318a8e1f543ee04b2a2632) 23 - [meta] add missing `engines.node` [`1443316`](https://github.com/ljharb/gopd/commit/14433165d07835c680155b3dfd62d9217d735eca) 24 - [Deps] update `get-intrinsic` [`eee5f51`](https://github.com/ljharb/gopd/commit/eee5f51769f3dbaf578b70e2a3199116b01aa670) 25 - [Deps] update `get-intrinsic` [`550c378`](https://github.com/ljharb/gopd/commit/550c3780e3a9c77b62565712a001b4ed64ea61f5) 26 - [Dev Deps] add missing peer dep [`8c2ecf8`](https://github.com/ljharb/gopd/commit/8c2ecf848122e4e30abfc5b5086fb48b390dce75) 7 27 8 28 ## [v1.0.1](https://github.com/ljharb/gopd/compare/v1.0.0...v1.0.1) - 2022-11-01 -
imaps-frontend/node_modules/gopd/index.js
r0c6b92a r79a0317 1 1 'use strict'; 2 2 3 var GetIntrinsic = require('get-intrinsic'); 4 5 var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true); 3 /** @type {import('.')} */ 4 var $gOPD = require('./gOPD'); 6 5 7 6 if ($gOPD) { -
imaps-frontend/node_modules/gopd/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "gopd", 3 "version": "1.0.1", 4 "description": "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.", 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 "prepublishOnly": "safe-publish-latest", 14 "prepublish": "not-in-publish || npm run prepublishOnly", 15 "lint": "eslint --ext=js,mjs .", 16 "postlint": "evalmd README.md", 17 "pretest": "npm run lint", 18 "tests-only": "tape 'test/**/*.js'", 19 "test": "npm run tests-only", 20 "posttest": "aud --production", 21 "version": "auto-changelog && git add CHANGELOG.md", 22 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "git+https://github.com/ljharb/gopd.git" 27 }, 28 "keywords": [ 29 "ecmascript", 30 "javascript", 31 "getownpropertydescriptor", 32 "property", 33 "descriptor" 34 ], 35 "author": "Jordan Harband <ljharb@gmail.com>", 36 "funding": { 37 "url": "https://github.com/sponsors/ljharb" 38 }, 39 "license": "MIT", 40 "bugs": { 41 "url": "https://github.com/ljharb/gopd/issues" 42 }, 43 "homepage": "https://github.com/ljharb/gopd#readme", 44 "dependencies": { 45 "get-intrinsic": "^1.1.3" 46 }, 47 "devDependencies": { 48 "@ljharb/eslint-config": "^21.0.0", 49 "aud": "^2.0.1", 50 "auto-changelog": "^2.4.0", 51 "eslint": "=8.8.0", 52 "evalmd": "^0.0.19", 53 "in-publish": "^2.0.1", 54 "npmignore": "^0.3.0", 55 "safe-publish-latest": "^2.0.0", 56 "tape": "^5.6.1" 57 }, 58 "auto-changelog": { 59 "output": "CHANGELOG.md", 60 "template": "keepachangelog", 61 "unreleased": false, 62 "commitLimit": false, 63 "backfillLimit": false, 64 "hideCredit": true 65 }, 66 "publishConfig": { 67 "ignore": [ 68 ".github/workflows" 69 ] 70 } 2 "_from": "gopd@^1.2.0", 3 "_id": "gopd@1.2.0", 4 "_inBundle": false, 5 "_integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 6 "_location": "/gopd", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "gopd@^1.2.0", 12 "name": "gopd", 13 "escapedName": "gopd", 14 "rawSpec": "^1.2.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.2.0" 17 }, 18 "_requiredBy": [ 19 "/define-data-property", 20 "/dunder-proto", 21 "/es-abstract", 22 "/es-iterator-helpers", 23 "/get-intrinsic", 24 "/globalthis", 25 "/is-regex", 26 "/regexp.prototype.flags", 27 "/set-function-length", 28 "/string.prototype.matchall", 29 "/typed-array-byte-length", 30 "/typed-array-byte-offset", 31 "/typed-array-length", 32 "/which-typed-array" 33 ], 34 "_resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 35 "_shasum": "89f56b8217bdbc8802bd299df6d7f1081d7e51a1", 36 "_spec": "gopd@^1.2.0", 37 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/get-intrinsic", 38 "author": { 39 "name": "Jordan Harband", 40 "email": "ljharb@gmail.com" 41 }, 42 "auto-changelog": { 43 "output": "CHANGELOG.md", 44 "template": "keepachangelog", 45 "unreleased": false, 46 "commitLimit": false, 47 "backfillLimit": false, 48 "hideCredit": true 49 }, 50 "bugs": { 51 "url": "https://github.com/ljharb/gopd/issues" 52 }, 53 "bundleDependencies": false, 54 "deprecated": false, 55 "description": "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.", 56 "devDependencies": { 57 "@arethetypeswrong/cli": "^0.17.0", 58 "@ljharb/eslint-config": "^21.1.1", 59 "@ljharb/tsconfig": "^0.2.0", 60 "@types/tape": "^5.6.5", 61 "auto-changelog": "^2.5.0", 62 "encoding": "^0.1.13", 63 "eslint": "=8.8.0", 64 "evalmd": "^0.0.19", 65 "in-publish": "^2.0.1", 66 "npmignore": "^0.3.1", 67 "safe-publish-latest": "^2.0.0", 68 "tape": "^5.9.0", 69 "typescript": "next" 70 }, 71 "engines": { 72 "node": ">= 0.4" 73 }, 74 "exports": { 75 ".": "./index.js", 76 "./gOPD": "./gOPD.js", 77 "./package.json": "./package.json" 78 }, 79 "funding": { 80 "url": "https://github.com/sponsors/ljharb" 81 }, 82 "homepage": "https://github.com/ljharb/gopd#readme", 83 "keywords": [ 84 "ecmascript", 85 "javascript", 86 "getownpropertydescriptor", 87 "property", 88 "descriptor" 89 ], 90 "license": "MIT", 91 "main": "index.js", 92 "name": "gopd", 93 "publishConfig": { 94 "ignore": [ 95 ".github/workflows" 96 ] 97 }, 98 "repository": { 99 "type": "git", 100 "url": "git+https://github.com/ljharb/gopd.git" 101 }, 102 "scripts": { 103 "lint": "eslint --ext=js,mjs .", 104 "postlint": "evalmd README.md", 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 "prelint": "tsc -p . && attw -P", 108 "prepack": "npmignore --auto --commentLines=autogenerated", 109 "prepublish": "not-in-publish || npm run prepublishOnly", 110 "prepublishOnly": "safe-publish-latest", 111 "pretest": "npm run lint", 112 "test": "npm run tests-only", 113 "tests-only": "tape 'test/**/*.js'", 114 "version": "auto-changelog && git add CHANGELOG.md" 115 }, 116 "sideEffects": false, 117 "version": "1.2.0" 71 118 } -
imaps-frontend/node_modules/gopd/test/index.js
r0c6b92a r79a0317 11 11 st.ok('x' in obj, 'property exists'); 12 12 13 // @ts-expect-error TS can't figure out narrowing from `skip` 13 14 var desc = gOPD(obj, 'x'); 14 15 st.deepEqual( … … 26 27 }); 27 28 28 t.test('not supported', { skip: gOPD }, function (st) {29 t.test('not supported', { skip: !!gOPD }, function (st) { 29 30 st.notOk(gOPD, 'is falsy'); 30 31
Note:
See TracChangeset
for help on using the changeset viewer.