├── .editorconfig ├── .env.local ├── .env.precommit ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ ├── provenance.yml │ ├── test.yml │ └── types.yml ├── .gitignore ├── .husky └── pre-commit ├── .ncurc.json ├── .oxlintignore ├── .oxlintrc.json ├── .taprc ├── LICENSE ├── README.md ├── SECURITY.md ├── biome.json ├── eslint.config.js ├── knip.json ├── package-lock.json ├── package.json ├── packages └── npm │ ├── abab │ ├── LICENSE │ ├── LICENSE.original.md │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── aggregate-error │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.mts │ ├── index.js │ └── package.json │ ├── array-buffer-byte-length │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── array-flatten │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── array-includes │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.from │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.of │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.at │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.every │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.filter │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.find │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.findlast │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.findlastindex │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.flat │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.flatmap │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.foreach │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.map │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.reduce │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.toreversed │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── array.prototype.tosorted │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── arraybuffer.prototype.slice │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── assert │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── assert.d.ts │ ├── overrides │ │ └── call-bind │ │ │ ├── LICENSE │ │ │ ├── LICENSE.original │ │ │ ├── callBound.d.ts │ │ │ ├── callBound.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ ├── package.json │ └── package │ │ └── build │ │ ├── assert.js │ │ └── internal │ │ ├── assert │ │ └── assertion_error.js │ │ ├── errors.js │ │ └── util │ │ └── comparisons.js │ ├── asynciterator.prototype │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── available-typed-arrays │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── date │ ├── Date.now │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.parse │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shared.d.ts │ │ ├── shared.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.getDate │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.getFullYear │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.getMonth │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.getUTCDate │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.getUTCFullYear │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.getUTCMonth │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.toDateString │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.toISOString │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.toJSON │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.toString │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date.prototype.toUTCString │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Date │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── index.json │ ├── package.json │ ├── shim.d.ts │ └── shim.js │ ├── deep-equal │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── overrides │ │ ├── call-bind │ │ │ ├── LICENSE │ │ │ ├── LICENSE.original │ │ │ ├── callBound.d.ts │ │ │ ├── callBound.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ └── get-intrinsic │ │ │ ├── LICENSE │ │ │ ├── LICENSE.original │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ ├── package.json │ └── package │ │ └── index.js │ ├── define-properties │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── es-aggregate-error │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── es-define-property │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── es-get-iterator │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── node.js │ ├── node.mjs │ └── package.json │ ├── es-iterator-helpers │ ├── Iterator.concat │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.from │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.constructor │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.drop │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.every │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.filter │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.find │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.flatMap │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.forEach │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.map │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.reduce │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.some │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.take │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype.toArray │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.prototype │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.zip │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator.zipKeyed │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── Iterator │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── index.json │ ├── package.json │ ├── shared.d.ts │ ├── shared.js │ ├── shim.d.ts │ └── shim.js │ ├── es-set-tostringtag │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── es6-object-assign │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── es6-symbol │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── implement.d.ts │ ├── implement.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ └── polyfill.js │ ├── for-each │ ├── LICENSE │ ├── LICENSE.original │ ├── LICENSE.types.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── function-bind │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── function.prototype.name │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── functions-have-names │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── get-symbol-description │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── getInferredName.d.ts │ ├── getInferredName.js │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── globalthis │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── gopd │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── harmony-reflect │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── has-property-descriptors │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── has-proto │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── has-symbols │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── shams.d.ts │ └── shams.js │ ├── has-tostringtag │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── shams.d.ts │ └── shams.js │ ├── has │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── hasown │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── hyrious__bun.lockb │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── cli.cjs │ ├── cli.d.cts │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.mts │ ├── index.js │ └── package.json │ ├── indent-string │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.mts │ ├── index.js │ └── package.json │ ├── internal-slot │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-arguments │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-array-buffer │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-bigint │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-boolean-object │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-core-module │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── core.json │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-date-object │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-generator-function │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-interactive │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.mts │ ├── index.js │ └── package.json │ ├── is-map │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-nan │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── is-negative-zero │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-number-object │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-regex │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-set │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-shared-array-buffer │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-string │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-symbol │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-typed-array │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-unicode-supported │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.mts │ ├── index.js │ └── package.json │ ├── is-weakmap │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-weakref │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── is-weakset │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── isarray │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── iterator.prototype │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── json-stable-stringify │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── jsonify │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── number-is-nan │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── license.original │ └── package.json │ ├── object-assign │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── object-is │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object-keys │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── isArguments.d.ts │ ├── isArguments.js │ └── package.json │ ├── object.assign │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.entries │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.fromentries │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.getownpropertydescriptors │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.getprototypeof │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.groupby │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.hasown │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── object.values │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── path-parse │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── promise.allsettled │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── promise.any │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── querystringify │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── reflect.getprototypeof │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── reflect.ownkeys │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── index.mjs │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── regexp.prototype.flags │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shared.d.ts │ ├── shared.js │ ├── shim.d.ts │ └── shim.js │ ├── safe-array-concat │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── safe-buffer │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── safe-regex-test │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── safer-buffer │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── dangerous.d.ts │ ├── dangerous.js │ ├── package.json │ ├── safer.d.ts │ ├── safer.js │ ├── shared.d.ts │ └── shared.js │ ├── set-function-length │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── env.d.ts │ ├── env.js │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── side-channel │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── string.fromcodepoint │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.at │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.codepointat │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.endswith │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.includes │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.matchall │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.padend │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.padstart │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.repeat │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.replaceall │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.split │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.startswith │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.trim │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.trimend │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.trimleft │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.trimright │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── string.prototype.trimstart │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── typed-array-buffer │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── typed-array-byte-length │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── typed-array-byte-offset │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── typed-array-length │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── typedarray.prototype.slice │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── typedarray │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── unbox-primitive │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── util.promisify │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── auto.d.ts │ ├── auto.js │ ├── implementation.d.ts │ ├── implementation.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── polyfill.d.ts │ ├── polyfill.js │ ├── shim.d.ts │ └── shim.js │ ├── which-boxed-primitive │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── which-collection │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ ├── which-typed-array │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json │ └── yocto-spinner │ ├── LICENSE │ ├── LICENSE.original │ ├── README.md │ ├── index.cjs │ ├── index.d.cts │ ├── index.d.mts │ ├── index.js │ └── package.json ├── patches ├── @tapjs+run#4.0.2.patch ├── brace-expansion#2.0.1.patch ├── iconv-lite#0.6.3.patch ├── jsbn#1.1.0.patch ├── minimatch#9.0.5.patch └── tinyglobby#0.2.14.patch ├── perf └── npm │ ├── fixtures │ └── sample_data_2mb.json │ ├── json-stable-stringify.perf.ts │ └── package.json ├── registry ├── .config │ ├── babel.config.js │ └── rollup.base.config.js ├── .env.external ├── LICENSE ├── README.md ├── extensions.json ├── index.d.ts ├── index.js ├── lib │ ├── arrays.d.ts │ ├── arrays.js │ ├── constants │ │ ├── abort-controller.d.ts │ │ ├── abort-controller.js │ │ ├── abort-signal.d.ts │ │ ├── abort-signal.js │ │ ├── at-latest.d.ts │ │ ├── at-latest.js │ │ ├── biome-json.d.ts │ │ ├── biome-json.js │ │ ├── ci.d.ts │ │ ├── ci.js │ │ ├── column-limit.d.ts │ │ ├── column-limit.js │ │ ├── copy-left-licenses.d.ts │ │ ├── copy-left-licenses.js │ │ ├── darwin.d.ts │ │ ├── darwin.js │ │ ├── empty-file.d.ts │ │ ├── empty-file.js │ │ ├── env.d.ts │ │ ├── env.js │ │ ├── eslint-config-js.d.ts │ │ ├── eslint-config-js.js │ │ ├── esnext.d.ts │ │ ├── esnext.js │ │ ├── exec-path.d.ts │ │ ├── exec-path.js │ │ ├── ext-cmd.d.ts │ │ ├── ext-cmd.js │ │ ├── ext-ps1.d.ts │ │ ├── ext-ps1.js │ │ ├── extensions-json.d.ts │ │ ├── extensions-json.js │ │ ├── extensions.d.ts │ │ ├── extensions.js │ │ ├── get-ipc.d.ts │ │ ├── get-ipc.js │ │ ├── gitignore.d.ts │ │ ├── gitignore.js │ │ ├── hidden-package-lock-json.d.ts │ │ ├── hidden-package-lock-json.js │ │ ├── ignore-globs.d.ts │ │ ├── ignore-globs.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── ipc-handler.d.ts │ │ ├── ipc-handler.js │ │ ├── ipc-promise.d.ts │ │ ├── ipc-promise.js │ │ ├── ipc-target.d.ts │ │ ├── ipc-target.js │ │ ├── ipc.d.ts │ │ ├── ipc.js │ │ ├── k-internals-symbol.d.ts │ │ ├── k-internals-symbol.js │ │ ├── latest.d.ts │ │ ├── latest.js │ │ ├── license-glob-recursive.d.ts │ │ ├── license-glob-recursive.js │ │ ├── license-glob.d.ts │ │ ├── license-glob.js │ │ ├── license-original-glob-recursive.d.ts │ │ ├── license-original-glob-recursive.js │ │ ├── license-original-glob.d.ts │ │ ├── license-original-glob.js │ │ ├── license-original.d.ts │ │ ├── license-original.js │ │ ├── license.d.ts │ │ ├── license.js │ │ ├── lifecycle-script-names.d.ts │ │ ├── lifecycle-script-names.js │ │ ├── loop-sentinel.d.ts │ │ ├── loop-sentinel.js │ │ ├── maintained-node-versions.d.ts │ │ ├── maintained-node-versions.js │ │ ├── manifest-json.d.ts │ │ ├── manifest-json.js │ │ ├── mit.d.ts │ │ ├── mit.js │ │ ├── node-auth-token.d.ts │ │ ├── node-auth-token.js │ │ ├── node-env.d.ts │ │ ├── node-env.js │ │ ├── node-harden-flags.d.ts │ │ ├── node-harden-flags.js │ │ ├── node-modules-glob-recursive.d.ts │ │ ├── node-modules-glob-recursive.js │ │ ├── node-modules.d.ts │ │ ├── node-modules.js │ │ ├── node-no-warnings-flags.d.ts │ │ ├── node-no-warnings-flags.js │ │ ├── node-version.d.ts │ │ ├── node-version.js │ │ ├── node-workspaces.d.ts │ │ ├── node-workspaces.js │ │ ├── npm-exec-path.d.ts │ │ ├── npm-exec-path.js │ │ ├── npm-real-exec-path.d.ts │ │ ├── npm-real-exec-path.js │ │ ├── npm.d.ts │ │ ├── npm.js │ │ ├── npx.d.ts │ │ ├── npx.js │ │ ├── overrides.d.ts │ │ ├── overrides.js │ │ ├── package-default-node-range.d.ts │ │ ├── package-default-node-range.js │ │ ├── package-default-socket-categories.d.ts │ │ ├── package-default-socket-categories.js │ │ ├── package-default-version.d.ts │ │ ├── package-default-version.js │ │ ├── package-extensions.d.ts │ │ ├── package-extensions.js │ │ ├── package-json.d.ts │ │ ├── package-json.js │ │ ├── package-lock-json.d.ts │ │ ├── package-lock-json.js │ │ ├── packument-cache.d.ts │ │ ├── packument-cache.js │ │ ├── pacote-cache-path.d.ts │ │ ├── pacote-cache-path.js │ │ ├── parse-args-config.d.ts │ │ ├── parse-args-config.js │ │ ├── pre-commit.d.ts │ │ ├── pre-commit.js │ │ ├── readme-glob-recursive.d.ts │ │ ├── readme-glob-recursive.js │ │ ├── readme-glob.d.ts │ │ ├── readme-glob.js │ │ ├── readme-md.d.ts │ │ ├── readme-md.js │ │ ├── registry-scope-delimiter.d.ts │ │ ├── registry-scope-delimiter.js │ │ ├── registry.d.ts │ │ ├── registry.js │ │ ├── resolutions.d.ts │ │ ├── resolutions.js │ │ ├── skip-tests-by-ecosystem.d.ts │ │ ├── skip-tests-by-ecosystem.js │ │ ├── socket-github-org.d.ts │ │ ├── socket-github-org.js │ │ ├── socket-ipc-handshake.d.ts │ │ ├── socket-ipc-handshake.js │ │ ├── socket-override-scope.d.ts │ │ ├── socket-override-scope.js │ │ ├── socket-public-api-key.d.ts │ │ ├── socket-public-api-key.js │ │ ├── socket-public-api-token.d.ts │ │ ├── socket-public-api-token.js │ │ ├── socket-registry-npm-org.d.ts │ │ ├── socket-registry-npm-org.js │ │ ├── socket-registry-package-name.d.ts │ │ ├── socket-registry-package-name.js │ │ ├── socket-registry-repo-name.d.ts │ │ ├── socket-registry-repo-name.js │ │ ├── socket-registry-scope.d.ts │ │ ├── socket-registry-scope.js │ │ ├── socket-security-scope.d.ts │ │ ├── socket-security-scope.js │ │ ├── spinner.d.ts │ │ ├── spinner.js │ │ ├── supports-node-compile-cache-api.d.ts │ │ ├── supports-node-compile-cache-api.js │ │ ├── supports-node-compile-cache-env-var.d.ts │ │ ├── supports-node-compile-cache-env-var.js │ │ ├── supports-node-disable-warning-flag.d.ts │ │ ├── supports-node-disable-warning-flag.js │ │ ├── supports-node-permission-flag.d.ts │ │ ├── supports-node-permission-flag.js │ │ ├── supports-node-require-module.d.ts │ │ ├── supports-node-require-module.js │ │ ├── supports-node-run.d.ts │ │ ├── supports-node-run.js │ │ ├── supports-process-send.d.ts │ │ ├── supports-process-send.js │ │ ├── tap.d.ts │ │ ├── tap.js │ │ ├── template-cjs-browser.d.ts │ │ ├── template-cjs-browser.js │ │ ├── template-cjs-esm.d.ts │ │ ├── template-cjs-esm.js │ │ ├── template-cjs.d.ts │ │ ├── template-cjs.js │ │ ├── template-es-shim-constructor.d.ts │ │ ├── template-es-shim-constructor.js │ │ ├── template-es-shim-prototype-method.d.ts │ │ ├── template-es-shim-prototype-method.js │ │ ├── template-es-shim-static-method.d.ts │ │ ├── template-es-shim-static-method.js │ │ ├── ts-libs-available.d.ts │ │ ├── ts-libs-available.js │ │ ├── ts-types-available.d.ts │ │ ├── ts-types-available.js │ │ ├── tsconfig-json.d.ts │ │ ├── tsconfig-json.js │ │ ├── undefined-token.d.ts │ │ ├── undefined-token.js │ │ ├── unlicenced.d.ts │ │ ├── unlicenced.js │ │ ├── unlicensed.d.ts │ │ ├── unlicensed.js │ │ ├── utf8.d.ts │ │ ├── utf8.js │ │ ├── vitest.d.ts │ │ ├── vitest.js │ │ ├── win32-ensure-tests-by-ecosystem.d.ts │ │ ├── win32-ensure-tests-by-ecosystem.js │ │ ├── win32.d.ts │ │ └── win32.js │ ├── debug.d.ts │ ├── debug.js │ ├── env.d.ts │ ├── env.js │ ├── fs.d.ts │ ├── fs.js │ ├── functions.d.ts │ ├── functions.js │ ├── globs.d.ts │ ├── globs.js │ ├── logger.d.ts │ ├── logger.js │ ├── npm.d.ts │ ├── npm.js │ ├── objects.d.ts │ ├── objects.js │ ├── packages.d.ts │ ├── packages.js │ ├── path.d.ts │ ├── path.js │ ├── promises.d.ts │ ├── promises.js │ ├── prompts.d.ts │ ├── prompts.js │ ├── regexps.d.ts │ ├── regexps.js │ ├── sorts.d.ts │ ├── sorts.js │ ├── spawn.d.ts │ ├── spawn.js │ ├── spinner.d.ts │ ├── spinner.js │ ├── strings.d.ts │ ├── strings.js │ ├── words.d.ts │ └── words.js ├── manifest.json ├── package.json ├── scripts │ ├── babel │ │ ├── transform-set-proto-plugin.js │ │ └── transform-url-parse-plugin.js │ └── rollup │ │ └── build-external.js └── src │ └── external │ ├── @inquirer │ ├── confirm.js │ ├── input.js │ ├── password.js │ ├── search.js │ └── select.js │ ├── @npmcli │ ├── package-json │ │ ├── index.js │ │ └── lib │ │ │ ├── read-package.js │ │ │ └── sort.js │ └── promise-spawn.js │ ├── @socketregistry │ ├── is-unicode-supported.js │ ├── packageurl-js.js │ └── yocto-spinner.js │ ├── @yarnpkg │ └── extensions.js │ ├── ansi-regex.js │ ├── browserslist.js │ ├── cacache.js │ ├── debug.js │ ├── fast-sort.js │ ├── libnpmpack.js │ ├── make-fetch-happen.js │ ├── normalize-package-data.js │ ├── npm-package-arg.js │ ├── pacote.js │ ├── picomatch.js │ ├── semver.js │ ├── signal-exit.js │ ├── spdx-correct.js │ ├── spdx-expression-parse.js │ ├── tinyglobby.js │ ├── validate-npm-package-name.js │ ├── which.js │ └── yoctocolors-cjs.js ├── scripts ├── constants.d.ts ├── constants.js ├── lib │ ├── biome.d.ts │ ├── biome.js │ ├── git.d.ts │ ├── git.js │ ├── templates.d.ts │ ├── templates.js │ ├── tests.d.ts │ └── tests.js ├── make-npm-override.js ├── perf.js ├── release-npm-packages.js ├── templates │ └── npm │ │ ├── README.md │ │ ├── cjs-browser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.cjs │ │ ├── index.d.cts │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ │ ├── cjs-esm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.cjs │ │ ├── index.d.cts │ │ ├── index.d.mts │ │ ├── index.js │ │ └── package.json │ │ ├── cjs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ │ ├── es-shim-constructor │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ │ ├── es-shim-prototype-method │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js │ │ └── es-shim-static-method │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.d.ts │ │ ├── auto.js │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── polyfill.d.ts │ │ ├── polyfill.js │ │ ├── shim.d.ts │ │ └── shim.js ├── test.js ├── update-empty-dirs.js ├── update-empty-files.js ├── update-licenses.js ├── update-manifest.js ├── update-npm-package-access.js ├── update-npm-package-json.js ├── update-npm-package-publish.js ├── update-npm-readmes.js ├── update-package-json.js ├── update-package-lock.js ├── update-registry-package-json.js ├── update-tap-config.js └── update-test-npm-package-json.js ├── socket-optimize-hero.png ├── test ├── npm.test.ts ├── npm │ ├── array-flatten.test.ts │ ├── es6-object-assign.test.ts │ ├── eslint.config.js │ ├── fixtures │ │ ├── fixture-bun.lockb │ │ └── fixture-yarn.lock │ ├── harmony-reflect.test.ts │ ├── hyrious__bun.lockb.test.ts │ ├── is-regex.test.ts │ ├── json-stable-stringify.test.ts │ ├── package-lock.json │ ├── package.json │ └── safer-buffer.test.ts ├── packages.test.ts └── registry.test.ts ├── ts.svg └── tsconfig.json /.env.local: -------------------------------------------------------------------------------- 1 | NODE_COMPILE_CACHE="$(pwd)/.cache" 2 | -------------------------------------------------------------------------------- /.env.precommit: -------------------------------------------------------------------------------- 1 | NODE_COMPILE_CACHE="$(pwd)/.cache" 2 | PRE_COMMIT=1 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.lockb binary diff=lockb 3 | -------------------------------------------------------------------------------- /.oxlintignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | packages/**/*.original* 3 | perf/**/fixtures 4 | scripts/templates 5 | test/**/fixtures 6 | -------------------------------------------------------------------------------- /packages/npm/aggregate-error/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | export = AggregateError 3 | -------------------------------------------------------------------------------- /packages/npm/aggregate-error/index.d.mts: -------------------------------------------------------------------------------- 1 | export { default } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/aggregate-error/index.js: -------------------------------------------------------------------------------- 1 | export { default, default as 'module.exports' } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/array-includes/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array-includes/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array-includes/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['includes'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array-includes/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.includes 4 | -------------------------------------------------------------------------------- /packages/npm/array-includes/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array-includes/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array-includes/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array-includes/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimArrayIncludes() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.from/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.from/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.from/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Array.from 2 | -------------------------------------------------------------------------------- /packages/npm/array.from/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.from 4 | -------------------------------------------------------------------------------- /packages/npm/array.from/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.from/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.from/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.from/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimArrayFrom() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.of/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.of/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.of/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Array.of 2 | -------------------------------------------------------------------------------- /packages/npm/array.of/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.of 4 | -------------------------------------------------------------------------------- /packages/npm/array.of/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.of/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.of/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.of/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimArrayOf() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['at'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.at 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.at/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimArrayProtoAt() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['every'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.every 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.every/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.filter/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.filter/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.filter/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['filter'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.filter/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.filter 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.filter/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.filter/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['find'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.find 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.find/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlast/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlast/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlast/implementation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const Impl: any[]['findLast'] 3 | export = Impl 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlast/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.findLast 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlast/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlast/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlastindex/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlastindex/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlastindex/implementation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const Impl: any[]['findLastIndex'] 3 | export = Impl 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlastindex/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.findLastIndex 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlastindex/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.findlastindex/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['flat'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.flat 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flat/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flatmap/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flatmap/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flatmap/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['flatMap'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flatmap/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.flatMap 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flatmap/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.flatmap/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.foreach/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.foreach/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.foreach/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['forEach'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.foreach/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.forEach 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.foreach/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.foreach/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['map'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.map 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.map/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimArrayProtoMap() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.reduce/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.reduce/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.reduce/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: any[]['reduce'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.reduce/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.prototype.reduce 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.reduce/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.reduce/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.toreversed/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.toreversed/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.toreversed/implementation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const Impl: any[]['toReversed'] 3 | export = Impl 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.toreversed/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.toreversed/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.tosorted/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.tosorted/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.tosorted/implementation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const Impl: any[]['toSorted'] 3 | export = Impl 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.tosorted/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/array.prototype.tosorted/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/arraybuffer.prototype.slice/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/arraybuffer.prototype.slice/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/arraybuffer.prototype.slice/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare function slice(begin: number, end?: number): ArrayBuffer 2 | export = slice 3 | -------------------------------------------------------------------------------- /packages/npm/arraybuffer.prototype.slice/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = ArrayBuffer.prototype.slice 4 | -------------------------------------------------------------------------------- /packages/npm/arraybuffer.prototype.slice/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/arraybuffer.prototype.slice/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/assert/overrides/call-bind/index.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/assert/overrides/call-bind/index.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/asynciterator.prototype/index.d.ts: -------------------------------------------------------------------------------- 1 | export = AsyncIterableIterator 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Date.now 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.now 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./implementation') 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.now/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimDateNow() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/date/Date.parse/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.parse/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.parse/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Date.parse 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.parse/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./polyfill')() 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.parse/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.parse/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getDate/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getDate/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getDate/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getDate'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getDate/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.getDate 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getDate/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getDate/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getFullYear/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getFullYear/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getFullYear/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getFullYear'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getFullYear/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.getFullYear 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getFullYear/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getFullYear/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getMonth/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getMonth/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getMonth/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getMonth'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getMonth/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.getMonth 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getMonth/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getMonth/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCDate/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCDate/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCDate/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getUTCDate'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCDate/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.getUTCDate 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCDate/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCDate/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCFullYear/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCFullYear/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCFullYear/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getUTCFullYear'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCFullYear/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.getUTCFullYear 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCFullYear/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCFullYear/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCMonth/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCMonth/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCMonth/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getUTCMonth'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCMonth/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.getUTCMonth 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCMonth/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.getUTCMonth/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toDateString/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toDateString/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toDateString/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['toDateString'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toDateString/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.toDateString 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toDateString/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toDateString/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toISOString/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toISOString/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toISOString/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['toISOString'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toISOString/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.toISOString 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toISOString/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toISOString/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toJSON/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toJSON/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toJSON/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['toJSON'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toJSON/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.toJSON 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toJSON/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toJSON/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toString/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toString/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toString/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['getDate'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toString/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.toString 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toString/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toString/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toUTCString/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toUTCString/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toUTCString/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare const Impl: Date['toUTCString'] 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toUTCString/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date.prototype.toUTCString 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toUTCString/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date.prototype.toUTCString/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Date 2 | -------------------------------------------------------------------------------- /packages/npm/date/Date/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Date 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./implementation') 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/date/Date/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/date/Date/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimDate() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/date/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/date/shim.d.ts: -------------------------------------------------------------------------------- 1 | declare function shimAllDate(): void 2 | export = shimAllDate 3 | -------------------------------------------------------------------------------- /packages/npm/deep-equal/index.d.cts: -------------------------------------------------------------------------------- 1 | import deepEqual from './index' 2 | export = deepEqual 3 | -------------------------------------------------------------------------------- /packages/npm/deep-equal/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function deepEqual( 2 | value1: unknown, 3 | value2: unknown, 4 | options?: { strict?: boolean } 5 | ): boolean 6 | export = deepEqual 7 | -------------------------------------------------------------------------------- /packages/npm/deep-equal/overrides/call-bind/index.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/deep-equal/overrides/call-bind/index.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = AggregateError 2 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = AggregateError 4 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/es-aggregate-error/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-define-property/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.defineProperty 2 | -------------------------------------------------------------------------------- /packages/npm/es-define-property/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.defineProperty 4 | -------------------------------------------------------------------------------- /packages/npm/es-get-iterator/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function getIterator(iterable: Iterable): IterableIterator 2 | export = getIterator 3 | -------------------------------------------------------------------------------- /packages/npm/es-get-iterator/node.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./index') 4 | -------------------------------------------------------------------------------- /packages/npm/es-get-iterator/node.mjs: -------------------------------------------------------------------------------- 1 | export { default, default as 'module.exports' } from './index.js' 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.concat/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.concat/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.concat/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.concat/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.from/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.from/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.from/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.from/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/implementation.d.ts: -------------------------------------------------------------------------------- 1 | import IteratorConstructor from '../Iterator/implementation' 2 | export = IteratorConstructor 3 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('../Iterator/implementation') 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/index.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from '../Iterator/index' 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import getPolyfill from '../Iterator/polyfill' 2 | export = getPolyfill 3 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.constructor/shim.d.ts: -------------------------------------------------------------------------------- 1 | import shim from '../Iterator/shim' 2 | export = shim 3 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.drop/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.drop/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.drop/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.every/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.every/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.every/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.filter/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.filter/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.filter/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.find/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.find/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.find/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.flatMap/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.flatMap/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.flatMap/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.forEach/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.forEach/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.forEach/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.map/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.map/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.map/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.reduce/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.reduce/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.reduce/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.some/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.some/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.some/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.take/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.take/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.take/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.toArray/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.toArray/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype.toArray/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.prototype/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zip/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zip/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zip/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zip/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zipKeyed/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zipKeyed/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zipKeyed/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator.zipKeyed/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/Iterator/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/es-iterator-helpers/shim.d.ts: -------------------------------------------------------------------------------- 1 | declare function shim(): void 2 | export = shim 3 | -------------------------------------------------------------------------------- /packages/npm/es6-object-assign/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es6-object-assign/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es6-symbol/implement.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es6-symbol/implement.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/es6-symbol/index.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './polyfill' 2 | export = Impl 3 | -------------------------------------------------------------------------------- /packages/npm/es6-symbol/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./polyfill') 4 | -------------------------------------------------------------------------------- /packages/npm/es6-symbol/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | export = Symbol 2 | -------------------------------------------------------------------------------- /packages/npm/es6-symbol/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Symbol 4 | -------------------------------------------------------------------------------- /packages/npm/function-bind/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.bind 2 | -------------------------------------------------------------------------------- /packages/npm/function-bind/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Function.prototype.bind 4 | -------------------------------------------------------------------------------- /packages/npm/function-bind/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.bind 2 | -------------------------------------------------------------------------------- /packages/npm/function-bind/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Function.prototype.bind 4 | -------------------------------------------------------------------------------- /packages/npm/function.prototype.name/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/function.prototype.name/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/function.prototype.name/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare function getName(this: Function): string 2 | export = getName 3 | -------------------------------------------------------------------------------- /packages/npm/function.prototype.name/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/function.prototype.name/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/get-symbol-description/getInferredName.d.ts: -------------------------------------------------------------------------------- 1 | declare function getInferredName(sym: symbol): string 2 | export = getInferredName 3 | -------------------------------------------------------------------------------- /packages/npm/get-symbol-description/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function getSymbolDescription(sym: symbol): string | undefined 2 | export = getSymbolDescription 3 | -------------------------------------------------------------------------------- /packages/npm/globalthis/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/globalthis/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/globalthis/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = globalThis 2 | -------------------------------------------------------------------------------- /packages/npm/globalthis/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = globalThis 4 | -------------------------------------------------------------------------------- /packages/npm/globalthis/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/globalthis/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/globalthis/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/globalthis/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimGlobalThis() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/gopd/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor 2 | -------------------------------------------------------------------------------- /packages/npm/gopd/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.getOwnPropertyDescriptor 4 | -------------------------------------------------------------------------------- /packages/npm/harmony-reflect/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect 2 | -------------------------------------------------------------------------------- /packages/npm/harmony-reflect/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Reflect 4 | -------------------------------------------------------------------------------- /packages/npm/has-proto/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasProto(): boolean 2 | export = hasProto 3 | -------------------------------------------------------------------------------- /packages/npm/has-proto/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function hasProto() { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /packages/npm/has-symbols/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasNativeSymbols(): boolean 2 | export = hasNativeSymbols 3 | -------------------------------------------------------------------------------- /packages/npm/has-symbols/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function hasNativeSymbols() { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /packages/npm/has-symbols/shams.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasSymbols(): boolean 2 | export = hasSymbols 3 | -------------------------------------------------------------------------------- /packages/npm/has-symbols/shams.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function hasSymbols() { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /packages/npm/has-tostringtag/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasToStringTag(): boolean 2 | export = hasToStringTag 3 | -------------------------------------------------------------------------------- /packages/npm/has-tostringtag/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function hasToStringTag() { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /packages/npm/has-tostringtag/shams.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasToStringTagShams(): boolean 2 | export = hasToStringTagShams 3 | -------------------------------------------------------------------------------- /packages/npm/has-tostringtag/shams.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function hasToStringTagShams() { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /packages/npm/has/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.hasOwn 2 | -------------------------------------------------------------------------------- /packages/npm/has/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.hasOwn 4 | -------------------------------------------------------------------------------- /packages/npm/hasown/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.hasOwn 2 | -------------------------------------------------------------------------------- /packages/npm/hasown/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.hasOwn 4 | -------------------------------------------------------------------------------- /packages/npm/hyrious__bun.lockb/cli.d.cts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/hyrious__bun.lockb/index.d.mts: -------------------------------------------------------------------------------- 1 | export { default, parse } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/hyrious__bun.lockb/index.js: -------------------------------------------------------------------------------- 1 | export * from './index.cjs' 2 | export { default, default as 'module.exports' } from './index.cjs' 3 | -------------------------------------------------------------------------------- /packages/npm/indent-string/index.d.mts: -------------------------------------------------------------------------------- 1 | export { default, Options } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/indent-string/index.js: -------------------------------------------------------------------------------- 1 | export { default, default as 'module.exports' } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/is-arguments/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isArgumentsObject 4 | -------------------------------------------------------------------------------- /packages/npm/is-arguments/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isArgumentsObject } from 'node:util/types' 3 | export = isArgumentsObject 4 | -------------------------------------------------------------------------------- /packages/npm/is-array-buffer/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isArrayBuffer 4 | -------------------------------------------------------------------------------- /packages/npm/is-array-buffer/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isArrayBuffer } from 'node:util/types' 3 | export = isArrayBuffer 4 | -------------------------------------------------------------------------------- /packages/npm/is-array-buffer/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isArrayBuffer(value: unknown): value is ArrayBuffer 2 | export = isArrayBuffer 3 | -------------------------------------------------------------------------------- /packages/npm/is-bigint/index.d.cts: -------------------------------------------------------------------------------- 1 | declare function isBigInt(value: unknown): value is bigint | BigInt 2 | export = isBigInt 3 | -------------------------------------------------------------------------------- /packages/npm/is-bigint/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isBigInt(value: unknown): value is bigint | BigInt 2 | export = isBigInt 3 | -------------------------------------------------------------------------------- /packages/npm/is-boolean-object/index.d.cts: -------------------------------------------------------------------------------- 1 | declare function isBoolean(value: unknown): value is boolean | Boolean 2 | export = isBoolean 3 | -------------------------------------------------------------------------------- /packages/npm/is-boolean-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isBooleanObject(value: unknown): value is boolean | Boolean 2 | export = isBooleanObject 3 | -------------------------------------------------------------------------------- /packages/npm/is-core-module/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isBuiltin as isCore } from 'node:module' 3 | export = isCore 4 | -------------------------------------------------------------------------------- /packages/npm/is-core-module/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isCore(moduleName: string): boolean 2 | export = isCore 3 | -------------------------------------------------------------------------------- /packages/npm/is-date-object/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isDate 4 | -------------------------------------------------------------------------------- /packages/npm/is-date-object/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isDate } from 'node:util/types' 3 | export = isDate 4 | -------------------------------------------------------------------------------- /packages/npm/is-date-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isDateObject(value: unknown): value is Date 2 | export = isDateObject 3 | -------------------------------------------------------------------------------- /packages/npm/is-generator-function/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isGeneratorFunction 4 | -------------------------------------------------------------------------------- /packages/npm/is-generator-function/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isGeneratorFunction } from 'node:util/types' 3 | export = isGeneratorFunction 4 | -------------------------------------------------------------------------------- /packages/npm/is-generator-function/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isGeneratorFunction(fn: unknown): fn is GeneratorFunction 2 | export = isGeneratorFunction 3 | -------------------------------------------------------------------------------- /packages/npm/is-interactive/index.d.mts: -------------------------------------------------------------------------------- 1 | export { default, Options } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/is-interactive/index.js: -------------------------------------------------------------------------------- 1 | export { default, default as 'module.exports' } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/is-map/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isMap 4 | -------------------------------------------------------------------------------- /packages/npm/is-map/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isMap } from 'node:util/types' 3 | export = isMap 4 | -------------------------------------------------------------------------------- /packages/npm/is-nan/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/is-nan/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/is-nan/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN 2 | -------------------------------------------------------------------------------- /packages/npm/is-nan/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Number.isNaN 4 | -------------------------------------------------------------------------------- /packages/npm/is-nan/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/is-nan/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/is-nan/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/is-nan/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimIsNan() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/is-negative-zero/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isNegativeZero(number: unknown): number is -0 2 | export = isNegativeZero 3 | -------------------------------------------------------------------------------- /packages/npm/is-negative-zero/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function isNegativeZero(number) { 4 | return number === 0 && 1 / number === -Infinity 5 | } 6 | -------------------------------------------------------------------------------- /packages/npm/is-number-object/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isNumberObject 4 | -------------------------------------------------------------------------------- /packages/npm/is-number-object/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isNumberObject } from 'node:util/types' 3 | export = isNumberObject 4 | -------------------------------------------------------------------------------- /packages/npm/is-number-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isNumber(value: unknown): value is number | Number 2 | export = isNumber 3 | -------------------------------------------------------------------------------- /packages/npm/is-regex/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isRegExp 4 | -------------------------------------------------------------------------------- /packages/npm/is-regex/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isRegExp } from 'node:util/types' 3 | export = isRegExp 4 | -------------------------------------------------------------------------------- /packages/npm/is-regex/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isRegex(value: unknown): value is RegExp 2 | export = isRegex 3 | -------------------------------------------------------------------------------- /packages/npm/is-set/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isSet 4 | -------------------------------------------------------------------------------- /packages/npm/is-set/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isSet } from 'node:util/types' 3 | export = isSet 4 | -------------------------------------------------------------------------------- /packages/npm/is-shared-array-buffer/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isSharedArrayBuffer 4 | -------------------------------------------------------------------------------- /packages/npm/is-shared-array-buffer/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isSharedArrayBuffer } from 'node:util/types' 3 | export = isSharedArrayBuffer 4 | -------------------------------------------------------------------------------- /packages/npm/is-shared-array-buffer/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isSharedArrayBuffer(obj: unknown): obj is SharedArrayBuffer 2 | export = isSharedArrayBuffer 3 | -------------------------------------------------------------------------------- /packages/npm/is-string/index.d.cts: -------------------------------------------------------------------------------- 1 | declare function isString(value: unknown): value is string | String 2 | export = isString 3 | -------------------------------------------------------------------------------- /packages/npm/is-string/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isString(value: unknown): value is string | String 2 | export = isString 3 | -------------------------------------------------------------------------------- /packages/npm/is-symbol/index.d.cts: -------------------------------------------------------------------------------- 1 | declare function isSymbol(value: unknown): value is symbol | Symbol 2 | export = isSymbol 3 | -------------------------------------------------------------------------------- /packages/npm/is-symbol/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isSymbol(value: unknown): value is symbol | Symbol 2 | export = isSymbol 3 | -------------------------------------------------------------------------------- /packages/npm/is-typed-array/index.d.cts: -------------------------------------------------------------------------------- 1 | declare function isSymbol(value: unknown): value is symbol | Symbol 2 | export = isSymbol 3 | -------------------------------------------------------------------------------- /packages/npm/is-unicode-supported/index.d.mts: -------------------------------------------------------------------------------- 1 | export { default } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/is-unicode-supported/index.js: -------------------------------------------------------------------------------- 1 | export { default, default as 'module.exports' } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/is-weakmap/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isWeakMap 4 | -------------------------------------------------------------------------------- /packages/npm/is-weakmap/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isWeakMap } from 'node:util/types' 3 | export = isWeakMap 4 | -------------------------------------------------------------------------------- /packages/npm/is-weakmap/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isWeakMap(object: unknown): object is WeakMap 2 | export = isWeakMap 3 | -------------------------------------------------------------------------------- /packages/npm/is-weakref/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isWeakRef( 2 | value: unknown 3 | ): value is WeakRef 4 | export = isWeakRef 5 | -------------------------------------------------------------------------------- /packages/npm/is-weakset/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('node:util/types').isWeakSet 4 | -------------------------------------------------------------------------------- /packages/npm/is-weakset/index.d.cts: -------------------------------------------------------------------------------- 1 | /// 2 | import { isWeakSet } from 'node:util/types' 3 | export = isWeakSet 4 | -------------------------------------------------------------------------------- /packages/npm/is-weakset/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isWeakSet(object: unknown): object is WeakSet 2 | export = isWeakSet 3 | -------------------------------------------------------------------------------- /packages/npm/isarray/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Array.isArray 2 | -------------------------------------------------------------------------------- /packages/npm/isarray/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Array.isArray 4 | -------------------------------------------------------------------------------- /packages/npm/iterator.prototype/index.d.ts: -------------------------------------------------------------------------------- 1 | export = IterableIterator 2 | -------------------------------------------------------------------------------- /packages/npm/jsonify/index.d.ts: -------------------------------------------------------------------------------- 1 | export = JSON 2 | -------------------------------------------------------------------------------- /packages/npm/jsonify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const { parse, stringify } = JSON 4 | module.exports = { parse, stringify } 5 | -------------------------------------------------------------------------------- /packages/npm/number-is-nan/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN 2 | -------------------------------------------------------------------------------- /packages/npm/object-assign/index.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.assign 2 | -------------------------------------------------------------------------------- /packages/npm/object-assign/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.assign 4 | -------------------------------------------------------------------------------- /packages/npm/object-is/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object-is/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object-is/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.is 2 | -------------------------------------------------------------------------------- /packages/npm/object-is/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.is 4 | -------------------------------------------------------------------------------- /packages/npm/object-is/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object-is/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object-is/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object-is/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimObjectIs() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object-keys/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.keys 2 | -------------------------------------------------------------------------------- /packages/npm/object-keys/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.keys 4 | -------------------------------------------------------------------------------- /packages/npm/object.assign/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.assign/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.assign/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.assign 2 | -------------------------------------------------------------------------------- /packages/npm/object.assign/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.assign 4 | -------------------------------------------------------------------------------- /packages/npm/object.assign/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.assign/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.assign/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.assign/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimObjectAssign() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.entries/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.entries/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.entries/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.entries 2 | -------------------------------------------------------------------------------- /packages/npm/object.entries/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.entries 4 | -------------------------------------------------------------------------------- /packages/npm/object.entries/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.entries/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.entries/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.entries/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimObjectEntries() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.fromentries/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.fromentries/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.fromentries/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.fromEntries 2 | -------------------------------------------------------------------------------- /packages/npm/object.fromentries/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.fromEntries 4 | -------------------------------------------------------------------------------- /packages/npm/object.fromentries/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.fromentries/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.getownpropertydescriptors/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.getownpropertydescriptors/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.getownpropertydescriptors/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptors 2 | -------------------------------------------------------------------------------- /packages/npm/object.getownpropertydescriptors/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.getOwnPropertyDescriptors 4 | -------------------------------------------------------------------------------- /packages/npm/object.getownpropertydescriptors/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.getownpropertydescriptors/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.getprototypeof/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.getprototypeof/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.getprototypeof/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getPrototypeOf 2 | -------------------------------------------------------------------------------- /packages/npm/object.getprototypeof/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.getPrototypeOf 4 | -------------------------------------------------------------------------------- /packages/npm/object.getprototypeof/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.getprototypeof/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.groupby/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.groupby/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/object.groupby/implementation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = Object.groupBy 3 | -------------------------------------------------------------------------------- /packages/npm/object.groupby/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.groupby/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.hasOwn 2 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.hasOwn 4 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.hasown/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimObjectHasOwn() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.values/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.values/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/object.values/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.values 2 | -------------------------------------------------------------------------------- /packages/npm/object.values/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.values 4 | -------------------------------------------------------------------------------- /packages/npm/object.values/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/object.values/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/object.values/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/object.values/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimObjectValues() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/promise.allsettled/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/promise.allsettled/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/promise.allsettled/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Promise.allSettled 2 | -------------------------------------------------------------------------------- /packages/npm/promise.allsettled/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Promise.allSettled 4 | -------------------------------------------------------------------------------- /packages/npm/promise.allsettled/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/promise.allsettled/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/promise.any/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/promise.any/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/promise.any/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Promise.any 2 | -------------------------------------------------------------------------------- /packages/npm/promise.any/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Promise.any 4 | -------------------------------------------------------------------------------- /packages/npm/promise.any/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/promise.any/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/promise.any/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/promise.any/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function shimPromiseAny() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/reflect.getprototypeof/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/reflect.getprototypeof/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/reflect.getprototypeof/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.getPrototypeOf 2 | -------------------------------------------------------------------------------- /packages/npm/reflect.getprototypeof/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Reflect.getPrototypeOf 4 | -------------------------------------------------------------------------------- /packages/npm/reflect.getprototypeof/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/reflect.getprototypeof/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.ownKeys 2 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Reflect.ownKeys 4 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/index.mjs: -------------------------------------------------------------------------------- 1 | export * from './index.js' 2 | export { default, default as 'module.exports' } from './index.js' 3 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/reflect.ownkeys/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/regexp.prototype.flags/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/regexp.prototype.flags/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | require('./shim')() 4 | -------------------------------------------------------------------------------- /packages/npm/regexp.prototype.flags/implementation.d.ts: -------------------------------------------------------------------------------- 1 | declare function flags(): string 2 | export = flags 3 | -------------------------------------------------------------------------------- /packages/npm/regexp.prototype.flags/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/regexp.prototype.flags/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/safe-buffer/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = Buffer 3 | -------------------------------------------------------------------------------- /packages/npm/safe-regex-test/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function regexTester(regex: RegExp): (s: string) => boolean 2 | export = regexTester 3 | -------------------------------------------------------------------------------- /packages/npm/string.fromcodepoint/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.fromcodepoint/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.fromcodepoint/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.fromCodePoint 2 | -------------------------------------------------------------------------------- /packages/npm/string.fromcodepoint/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.fromCodePoint 4 | -------------------------------------------------------------------------------- /packages/npm/string.fromcodepoint/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.fromcodepoint/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.at/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.at/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.at/implementation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = String.prototype.at 3 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.at/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.at 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.at/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.at/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.codepointat/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.codepointat/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.codepointat/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.codePointAt 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.codepointat/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.codePointAt 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.codepointat/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.codepointat/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.endswith/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.endswith/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.endswith/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.endsWith 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.endswith/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.endsWith 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.endswith/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.endswith/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.includes/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.includes/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.includes/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.includes 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.includes/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.includes 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.includes/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.includes/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.matchall/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.matchall/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.matchall/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.matchAll 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.matchall/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.matchAll 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.matchall/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.matchall/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padend/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padend/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padend/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.padEnd 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padend/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.padEnd 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padend/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padend/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padstart/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padstart/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padstart/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.padStart 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padstart/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.padStart 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padstart/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.padstart/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.repeat/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.repeat/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.repeat/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.repeat 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.repeat/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.repeat 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.repeat/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.repeat/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.replaceall/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.replaceall/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.replaceall/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.replaceAll 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.replaceall/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.replaceAll 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.replaceall/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.replaceall/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.split/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.split/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.split/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.split 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.split/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.split 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.split/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.split/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.startswith/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.startswith/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.startswith/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.startsWith 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.startswith/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.startsWith 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.startswith/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.startswith/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trim/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trim/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trim/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.trim 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trim/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.trim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trim/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trim/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimend/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimend/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimend/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.trimEnd 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimend/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.trimEnd 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimend/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimend/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimleft/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimleft/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimleft/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.trimLeft 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimleft/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.trimLeft 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimleft/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimleft/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimright/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimright/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimright/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.trimRight 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimright/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.trimRight 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimright/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimright/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimstart/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimstart/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimstart/implementation.d.ts: -------------------------------------------------------------------------------- 1 | export = String.prototype.trimStart 2 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimstart/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = String.prototype.trimStart 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimstart/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/string.prototype.trimstart/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/typedarray.prototype.slice/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/typedarray.prototype.slice/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/typedarray.prototype.slice/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Reflect.getPrototypeOf(Uint8Array).prototype.slice 4 | -------------------------------------------------------------------------------- /packages/npm/typedarray.prototype.slice/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/typedarray.prototype.slice/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/util.promisify/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/util.promisify/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /packages/npm/util.promisify/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /packages/npm/util.promisify/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const impl = require('./implementation') 4 | 5 | module.exports = function getPolyfill() { 6 | return impl 7 | } 8 | -------------------------------------------------------------------------------- /packages/npm/util.promisify/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /packages/npm/yocto-spinner/index.d.mts: -------------------------------------------------------------------------------- 1 | export { default, Color, Options, Spinner, SpinnerStyle } from './index.cjs' 2 | -------------------------------------------------------------------------------- /packages/npm/yocto-spinner/index.js: -------------------------------------------------------------------------------- 1 | export { default, default as 'module.exports' } from './index.cjs' 2 | -------------------------------------------------------------------------------- /registry/.env.external: -------------------------------------------------------------------------------- 1 | LINT_EXTERNAL=1 2 | NODE_COMPILE_CACHE="$(pwd)/.cache" 3 | -------------------------------------------------------------------------------- /registry/lib/constants/abort-controller.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const abortController: AbortController 3 | export = abortController 4 | -------------------------------------------------------------------------------- /registry/lib/constants/abort-signal.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const abortSignal: AbortSignal 3 | export = abortSignal 4 | -------------------------------------------------------------------------------- /registry/lib/constants/at-latest.d.ts: -------------------------------------------------------------------------------- 1 | declare const AT_LATEST: '@latest' 2 | export = AT_LATEST 3 | -------------------------------------------------------------------------------- /registry/lib/constants/at-latest.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '@latest' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/biome-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const BIOME_JSON: 'biome.json' 2 | export = BIOME_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/biome-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'biome.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/ci.d.ts: -------------------------------------------------------------------------------- 1 | declare const CI: 'CI' 2 | export = CI 3 | -------------------------------------------------------------------------------- /registry/lib/constants/ci.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'CI' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/column-limit.d.ts: -------------------------------------------------------------------------------- 1 | declare const COLUMN_LIMIT: 80 2 | export = COLUMN_LIMIT 3 | -------------------------------------------------------------------------------- /registry/lib/constants/column-limit.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 80 4 | -------------------------------------------------------------------------------- /registry/lib/constants/copy-left-licenses.d.ts: -------------------------------------------------------------------------------- 1 | declare const copyLeftLicenses: ReadonlySet 2 | export = copyLeftLicenses 3 | -------------------------------------------------------------------------------- /registry/lib/constants/darwin.d.ts: -------------------------------------------------------------------------------- 1 | declare const DARWIN: boolean 2 | export = DARWIN 3 | -------------------------------------------------------------------------------- /registry/lib/constants/darwin.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = process.platform === 'darwin' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/empty-file.d.ts: -------------------------------------------------------------------------------- 1 | declare const EMPTY_FILE: '/* empty */\n' 2 | export = EMPTY_FILE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/empty-file.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '/* empty */\n' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/eslint-config-js.d.ts: -------------------------------------------------------------------------------- 1 | declare const ESLINT_CONFIG_JS: 'eslint.config.js' 2 | export = ESLINT_CONFIG_JS 3 | -------------------------------------------------------------------------------- /registry/lib/constants/eslint-config-js.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'eslint.config.js' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/esnext.d.ts: -------------------------------------------------------------------------------- 1 | declare const ESNEXT: 'esnext' 2 | export = ESNEXT 3 | -------------------------------------------------------------------------------- /registry/lib/constants/esnext.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'esnext' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/exec-path.d.ts: -------------------------------------------------------------------------------- 1 | declare const execPath: string 2 | export = execPath 3 | -------------------------------------------------------------------------------- /registry/lib/constants/exec-path.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = process.execPath 4 | -------------------------------------------------------------------------------- /registry/lib/constants/ext-cmd.d.ts: -------------------------------------------------------------------------------- 1 | declare const EXT_CMD: '.cmd' 2 | export = EXT_CMD 3 | -------------------------------------------------------------------------------- /registry/lib/constants/ext-cmd.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '.cmd' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/ext-ps1.d.ts: -------------------------------------------------------------------------------- 1 | declare const EXT_PS1: '.ps1' 2 | export = EXT_PS1 3 | -------------------------------------------------------------------------------- /registry/lib/constants/ext-ps1.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '.ps1' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/extensions-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const EXTENSIONS_JSON: 'extensions.json' 2 | export = EXTENSIONS_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/extensions-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'extensions.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/extensions.d.ts: -------------------------------------------------------------------------------- 1 | declare const EXTENSIONS: 'extensions' 2 | export = EXTENSIONS 3 | -------------------------------------------------------------------------------- /registry/lib/constants/extensions.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'extensions' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/gitignore.d.ts: -------------------------------------------------------------------------------- 1 | declare const GITIGNORE: '.gitignore' 2 | export = GITIGNORE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/gitignore.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '.gitignore' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/hidden-package-lock-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const HIDDEN_PACKAGE_LOCK_JSON: '.package-lock.json' 2 | export = HIDDEN_PACKAGE_LOCK_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/hidden-package-lock-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '.package-lock.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/ipc-promise.d.ts: -------------------------------------------------------------------------------- 1 | import IPC from './ipc' 2 | 3 | declare const ipcPromise: Promise 4 | 5 | export = ipcPromise 6 | -------------------------------------------------------------------------------- /registry/lib/constants/ipc-target.d.ts: -------------------------------------------------------------------------------- 1 | import IPC from './ipc' 2 | 3 | export = IPC 4 | -------------------------------------------------------------------------------- /registry/lib/constants/ipc-target.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = { __proto__: null } 4 | -------------------------------------------------------------------------------- /registry/lib/constants/k-internals-symbol.d.ts: -------------------------------------------------------------------------------- 1 | declare const kInternalsSymbol: unique symbol 2 | export = kInternalsSymbol 3 | -------------------------------------------------------------------------------- /registry/lib/constants/k-internals-symbol.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Symbol('@socketregistry.constants.internals') 4 | -------------------------------------------------------------------------------- /registry/lib/constants/latest.d.ts: -------------------------------------------------------------------------------- 1 | declare const LATEST: 'latest' 2 | export = LATEST 3 | -------------------------------------------------------------------------------- /registry/lib/constants/latest.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'latest' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/license-glob-recursive.d.ts: -------------------------------------------------------------------------------- 1 | declare const LICENSE_GLOB_RECURSIVE: '**/LICEN[CS]E{[.-]*,}' 2 | export = LICENSE_GLOB_RECURSIVE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/license-glob-recursive.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '**/LICEN[CS]E{[.-]*,}' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/license-glob.d.ts: -------------------------------------------------------------------------------- 1 | declare const LICENSE_GLOB: 'LICEN[CS]E{[.-]*,}' 2 | export = LICENSE_GLOB 3 | -------------------------------------------------------------------------------- /registry/lib/constants/license-glob.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'LICEN[CS]E{[.-]*,}' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/license-original-glob-recursive.d.ts: -------------------------------------------------------------------------------- 1 | declare const LICENSE_ORIGINAL_GLOB_RECURSIVE: '**/*.original{.*,}' 2 | export = LICENSE_ORIGINAL_GLOB_RECURSIVE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/license-original-glob-recursive.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '**/*.original{.*,}' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/license-original-glob.d.ts: -------------------------------------------------------------------------------- 1 | declare const LICENSE_ORIGINAL_GLOB: '*.original{.*,}' 2 | export = LICENSE_ORIGINAL_GLOB 3 | -------------------------------------------------------------------------------- /registry/lib/constants/license-original-glob.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '*.original{.*,}' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/license-original.d.ts: -------------------------------------------------------------------------------- 1 | declare const LICENSE_ORIGINAL: 'LICENSE.original' 2 | export = LICENSE_ORIGINAL 3 | -------------------------------------------------------------------------------- /registry/lib/constants/license-original.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'LICENSE.original' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/license.d.ts: -------------------------------------------------------------------------------- 1 | declare const LICENSE: 'LICENSE' 2 | export = LICENSE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/license.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'LICENSE' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/lifecycle-script-names.d.ts: -------------------------------------------------------------------------------- 1 | declare const lifecycleScriptNames: ReadonlySet 2 | export = lifecycleScriptNames 3 | -------------------------------------------------------------------------------- /registry/lib/constants/loop-sentinel.d.ts: -------------------------------------------------------------------------------- 1 | declare const LOOP_SENTINEL: 1_000_000 2 | export = LOOP_SENTINEL 3 | -------------------------------------------------------------------------------- /registry/lib/constants/loop-sentinel.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 1000000 4 | -------------------------------------------------------------------------------- /registry/lib/constants/manifest-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const MANIFEST_JSON: 'manifest.json' 2 | export = MANIFEST_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/manifest-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'manifest.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/mit.d.ts: -------------------------------------------------------------------------------- 1 | declare const MIT: 'MIT' 2 | export = MIT 3 | -------------------------------------------------------------------------------- /registry/lib/constants/mit.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'MIT' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/node-auth-token.d.ts: -------------------------------------------------------------------------------- 1 | declare const NODE_AUTH_TOKEN: 'NODE_AUTH_TOKEN' 2 | export = NODE_AUTH_TOKEN 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-auth-token.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'NODE_AUTH_TOKEN' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/node-env.d.ts: -------------------------------------------------------------------------------- 1 | declare const NODE_ENV: 'NODE_ENV' 2 | export = NODE_ENV 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'NODE_ENV' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/node-harden-flags.d.ts: -------------------------------------------------------------------------------- 1 | declare const nodeHardenFlags: readonly string[] 2 | export = nodeHardenFlags 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-modules-glob-recursive.d.ts: -------------------------------------------------------------------------------- 1 | declare const NODE_MODULES_GLOB_RECURSIVE: '**/node_modules' 2 | export = NODE_MODULES_GLOB_RECURSIVE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-modules-glob-recursive.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '**/node_modules' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/node-modules.d.ts: -------------------------------------------------------------------------------- 1 | declare const NODE_MODULES: 'node_modules' 2 | export = NODE_MODULES 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-modules.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'node_modules' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/node-version.d.ts: -------------------------------------------------------------------------------- 1 | declare const NODE_VERSION: string 2 | export = NODE_VERSION 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-version.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = process.version 4 | -------------------------------------------------------------------------------- /registry/lib/constants/node-workspaces.d.ts: -------------------------------------------------------------------------------- 1 | declare const NODE_WORKSPACES: 'node_workspaces' 2 | export = NODE_WORKSPACES 3 | -------------------------------------------------------------------------------- /registry/lib/constants/node-workspaces.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'node_workspaces' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/npm-exec-path.d.ts: -------------------------------------------------------------------------------- 1 | declare const npmExecPath: string 2 | export = npmExecPath 3 | -------------------------------------------------------------------------------- /registry/lib/constants/npm-exec-path.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const which = /*@__PURE__*/ require('../../external/which') 4 | 5 | module.exports = which.sync('npm') 6 | -------------------------------------------------------------------------------- /registry/lib/constants/npm-real-exec-path.d.ts: -------------------------------------------------------------------------------- 1 | declare const npmRealExecPath: string 2 | export = npmRealExecPath 3 | -------------------------------------------------------------------------------- /registry/lib/constants/npm.d.ts: -------------------------------------------------------------------------------- 1 | declare const NPM: 'npm' 2 | export = NPM 3 | -------------------------------------------------------------------------------- /registry/lib/constants/npm.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'npm' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/npx.d.ts: -------------------------------------------------------------------------------- 1 | declare const NPX: 'npx' 2 | export = NPX 3 | -------------------------------------------------------------------------------- /registry/lib/constants/npx.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'npx' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/overrides.d.ts: -------------------------------------------------------------------------------- 1 | declare const OVERRIDES: 'overrides' 2 | export = OVERRIDES 3 | -------------------------------------------------------------------------------- /registry/lib/constants/overrides.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'overrides' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/package-default-node-range.d.ts: -------------------------------------------------------------------------------- 1 | declare const PACKAGE_DEFAULT_NODE_RANGE: string 2 | export = PACKAGE_DEFAULT_NODE_RANGE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/package-default-socket-categories.d.ts: -------------------------------------------------------------------------------- 1 | declare const PACKAGE_DEFAULT_SOCKET_CATEGORIES: readonly ['cleanup'] 2 | export = PACKAGE_DEFAULT_SOCKET_CATEGORIES 3 | -------------------------------------------------------------------------------- /registry/lib/constants/package-default-socket-categories.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = Object.freeze(['cleanup']) 4 | -------------------------------------------------------------------------------- /registry/lib/constants/package-default-version.d.ts: -------------------------------------------------------------------------------- 1 | declare const PACKAGE_DEFAULT_VERSION: '1.0.0' 2 | export = PACKAGE_DEFAULT_VERSION 3 | -------------------------------------------------------------------------------- /registry/lib/constants/package-default-version.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '1.0.0' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/package-extensions.d.ts: -------------------------------------------------------------------------------- 1 | declare const packageExtensions: ReadonlyArray<[string, object]> 2 | export = packageExtensions 3 | -------------------------------------------------------------------------------- /registry/lib/constants/package-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const PACKAGE_JSON: 'package.json' 2 | export = PACKAGE_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/package-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'package.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/package-lock-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const PACKAGE_LOCK_JSON: 'package-lock.json' 2 | export = PACKAGE_LOCK_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/package-lock-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'package-lock.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/packument-cache.d.ts: -------------------------------------------------------------------------------- 1 | declare const packumentCache: Map 2 | export = packumentCache 3 | -------------------------------------------------------------------------------- /registry/lib/constants/packument-cache.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = new Map() 4 | -------------------------------------------------------------------------------- /registry/lib/constants/pacote-cache-path.d.ts: -------------------------------------------------------------------------------- 1 | declare const pacoteCachePath: string 2 | export = pacoteCachePath 3 | -------------------------------------------------------------------------------- /registry/lib/constants/pre-commit.d.ts: -------------------------------------------------------------------------------- 1 | declare const PRE_COMMIT: 'PRE_COMMIT' 2 | export = PRE_COMMIT 3 | -------------------------------------------------------------------------------- /registry/lib/constants/pre-commit.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'PRE_COMMIT' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/readme-glob-recursive.d.ts: -------------------------------------------------------------------------------- 1 | declare const README_GLOB_RECURSIVE: '**/README{.*,}' 2 | export = README_GLOB_RECURSIVE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/readme-glob-recursive.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '**/README{.*,}' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/readme-glob.d.ts: -------------------------------------------------------------------------------- 1 | declare const README_GLOB: 'README{.*,}' 2 | export = README_GLOB 3 | -------------------------------------------------------------------------------- /registry/lib/constants/readme-glob.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'README{.*,}' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/readme-md.d.ts: -------------------------------------------------------------------------------- 1 | declare const README_MD: 'README.md' 2 | export = README_MD 3 | -------------------------------------------------------------------------------- /registry/lib/constants/readme-md.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'README.md' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/registry-scope-delimiter.d.ts: -------------------------------------------------------------------------------- 1 | declare const REGISTRY_SCOPE_DELIMITER: '__' 2 | export = REGISTRY_SCOPE_DELIMITER 3 | -------------------------------------------------------------------------------- /registry/lib/constants/registry-scope-delimiter.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '__' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/registry.d.ts: -------------------------------------------------------------------------------- 1 | declare const registry: 'registry' 2 | export = registry 3 | -------------------------------------------------------------------------------- /registry/lib/constants/registry.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'registry' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/resolutions.d.ts: -------------------------------------------------------------------------------- 1 | declare const RESOLUTIONS: 'resolutions' 2 | export = RESOLUTIONS 3 | -------------------------------------------------------------------------------- /registry/lib/constants/resolutions.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'resolutions' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/skip-tests-by-ecosystem.d.ts: -------------------------------------------------------------------------------- 1 | declare const skipTestsByEcosystem: Map> 2 | export = skipTestsByEcosystem 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-github-org.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_GITHUB_ORG: 'SocketDev' 2 | export = SOCKET_GITHUB_ORG 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-github-org.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'SocketDev' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-ipc-handshake.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_IPC_HANDSHAKE: 'SOCKET_IPC_HANDSHAKE' 2 | export = SOCKET_IPC_HANDSHAKE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-ipc-handshake.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'SOCKET_IPC_HANDSHAKE' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-override-scope.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_OVERRIDE_SCOPE: '@socketoverride' 2 | export = SOCKET_OVERRIDE_SCOPE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-override-scope.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '@socketoverride' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-public-api-key.d.ts: -------------------------------------------------------------------------------- 1 | import socketPublicApiToken from './socket-public-api-token' 2 | 3 | export = socketPublicApiToken 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-public-api-key.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = /*@__PURE__*/ require('./socket-public-api-token') 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-public-api-token.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_PUBLIC_API_TOKEN: string 2 | export = SOCKET_PUBLIC_API_TOKEN 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-public-api-token.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'sktsec_t_--RAN5U4ivauy4w37-6aoKyYPDt5ZbaT5JBVMqiwKo_api' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-npm-org.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_REGISTRY_NPM_ORG: 'socketregistry' 2 | export = SOCKET_REGISTRY_NPM_ORG 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-npm-org.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'socketregistry' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-package-name.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_REGISTRY_PACKAGE_NAME: '@socketsecurity/registry' 2 | export = SOCKET_REGISTRY_PACKAGE_NAME 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-package-name.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '@socketsecurity/registry' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-repo-name.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_REGISTRY_REPO_NAME: 'socket-registry' 2 | export = SOCKET_REGISTRY_REPO_NAME 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-repo-name.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'socket-registry' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-scope.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_REGISTRY_SCOPE: '@socketregistry' 2 | export = SOCKET_REGISTRY_SCOPE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-registry-scope.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '@socketregistry' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-security-scope.d.ts: -------------------------------------------------------------------------------- 1 | declare const SOCKET_SECURITY_SCOPE: '@socketsecurity' 2 | export = SOCKET_SECURITY_SCOPE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/socket-security-scope.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = '@socketsecurity' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/spinner.d.ts: -------------------------------------------------------------------------------- 1 | import { Spinner } from '../spinner' 2 | 3 | declare const spinner: Spinner 4 | export = spinner 5 | -------------------------------------------------------------------------------- /registry/lib/constants/spinner.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const { Spinner } = /*@__PURE__*/ require('../spinner') 4 | module.exports = new Spinner() 5 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-compile-cache-api.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_NODE_COMPILE_CACHE_API: boolean 2 | export = SUPPORTS_NODE_COMPILE_CACHE_API 3 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-compile-cache-env-var.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_NODE_COMPILE_CACHE_ENV_VAR: boolean 2 | export = SUPPORTS_NODE_COMPILE_CACHE_ENV_VAR 3 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-disable-warning-flag.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_NODE_DISABLE_WARNING_FLAG: boolean 2 | export = SUPPORTS_NODE_DISABLE_WARNING_FLAG 3 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-permission-flag.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_NODE_PERMISSION_FLAG: boolean 2 | export = SUPPORTS_NODE_PERMISSION_FLAG 3 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-require-module.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_NODE_REQUIRE_MODULE: boolean 2 | export = SUPPORTS_NODE_REQUIRE_MODULE 3 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-require-module.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = !!process.features.require_module 4 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-node-run.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_NODE_RUN: boolean 2 | export = SUPPORTS_NODE_RUN 3 | -------------------------------------------------------------------------------- /registry/lib/constants/supports-process-send.d.ts: -------------------------------------------------------------------------------- 1 | declare const SUPPORTS_PROCESS_SEND: boolean 2 | export = SUPPORTS_PROCESS_SEND 3 | -------------------------------------------------------------------------------- /registry/lib/constants/tap.d.ts: -------------------------------------------------------------------------------- 1 | declare const TAP: 'TAP' 2 | export = TAP 3 | -------------------------------------------------------------------------------- /registry/lib/constants/tap.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'TAP' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/template-cjs-browser.d.ts: -------------------------------------------------------------------------------- 1 | declare const TEMPLATE_CJS_BROWSER: 'cjs-browser' 2 | export = TEMPLATE_CJS_BROWSER 3 | -------------------------------------------------------------------------------- /registry/lib/constants/template-cjs-browser.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'cjs-browser' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/template-cjs-esm.d.ts: -------------------------------------------------------------------------------- 1 | declare const TEMPLATE_CJS_ESM: 'cjs-esm' 2 | export = TEMPLATE_CJS_ESM 3 | -------------------------------------------------------------------------------- /registry/lib/constants/template-cjs-esm.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'cjs-esm' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/template-cjs.d.ts: -------------------------------------------------------------------------------- 1 | declare const CJS: 'CJS' 2 | export = CJS 3 | -------------------------------------------------------------------------------- /registry/lib/constants/template-cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'cjs' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/template-es-shim-constructor.d.ts: -------------------------------------------------------------------------------- 1 | declare const TEMPLATE_ES_SHIM_CONSTRUCTOR: 'es-shim-constructor' 2 | export = TEMPLATE_ES_SHIM_CONSTRUCTOR 3 | -------------------------------------------------------------------------------- /registry/lib/constants/template-es-shim-constructor.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'es-shim-constructor' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/template-es-shim-prototype-method.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'es-shim-prototype-method' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/template-es-shim-static-method.d.ts: -------------------------------------------------------------------------------- 1 | declare const TEMPLATE_ES_SHIM_STATIC_METHOD: 'es-shim-static-method' 2 | export = TEMPLATE_ES_SHIM_STATIC_METHOD 3 | -------------------------------------------------------------------------------- /registry/lib/constants/template-es-shim-static-method.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'es-shim-static-method' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/ts-libs-available.d.ts: -------------------------------------------------------------------------------- 1 | declare const tsLibsAvailable: ReadonlySet 2 | export = tsLibsAvailable 3 | -------------------------------------------------------------------------------- /registry/lib/constants/ts-types-available.d.ts: -------------------------------------------------------------------------------- 1 | declare const tsTypesAvailable: ReadonlySet 2 | export = tsTypesAvailable 3 | -------------------------------------------------------------------------------- /registry/lib/constants/ts-types-available.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = new Set(['node']) 4 | -------------------------------------------------------------------------------- /registry/lib/constants/tsconfig-json.d.ts: -------------------------------------------------------------------------------- 1 | declare const TSCONFIG_JSON: 'tsconfig.json' 2 | export = TSCONFIG_JSON 3 | -------------------------------------------------------------------------------- /registry/lib/constants/tsconfig-json.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'tsconfig.json' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/undefined-token.d.ts: -------------------------------------------------------------------------------- 1 | declare const UNDEFINED_TOKEN: {} 2 | export = UNDEFINED_TOKEN 3 | -------------------------------------------------------------------------------- /registry/lib/constants/undefined-token.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = {} 4 | -------------------------------------------------------------------------------- /registry/lib/constants/unlicenced.d.ts: -------------------------------------------------------------------------------- 1 | declare const UNLICENCED: 'UNLICENCED' 2 | export = UNLICENCED 3 | -------------------------------------------------------------------------------- /registry/lib/constants/unlicenced.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'UNLICENCED' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/unlicensed.d.ts: -------------------------------------------------------------------------------- 1 | declare const UNLICENSED: 'UNLICENSED' 2 | export = UNLICENSED 3 | -------------------------------------------------------------------------------- /registry/lib/constants/unlicensed.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'UNLICENSED' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/utf8.d.ts: -------------------------------------------------------------------------------- 1 | declare const UTF8: 'utf8' 2 | export = UTF8 3 | -------------------------------------------------------------------------------- /registry/lib/constants/utf8.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'utf8' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/vitest.d.ts: -------------------------------------------------------------------------------- 1 | declare const VITEST: 'VITEST' 2 | export = VITEST 3 | -------------------------------------------------------------------------------- /registry/lib/constants/vitest.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = 'VITEST' 4 | -------------------------------------------------------------------------------- /registry/lib/constants/win32-ensure-tests-by-ecosystem.d.ts: -------------------------------------------------------------------------------- 1 | declare const win32EnsureTestsByEcosystem: Map> 2 | export = win32EnsureTestsByEcosystem 3 | -------------------------------------------------------------------------------- /registry/lib/constants/win32-ensure-tests-by-ecosystem.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = new Map([['npm', new Set(['date'])]]) 4 | -------------------------------------------------------------------------------- /registry/lib/constants/win32.d.ts: -------------------------------------------------------------------------------- 1 | declare const WIN32: boolean 2 | export = WIN32 3 | -------------------------------------------------------------------------------- /registry/lib/constants/win32.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = process.platform === 'win32' 4 | -------------------------------------------------------------------------------- /registry/lib/env.d.ts: -------------------------------------------------------------------------------- 1 | declare const Env: { 2 | envAsBoolean(value: any): boolean 3 | envAsString(value: any): string 4 | } 5 | declare namespace Env {} 6 | export = Env 7 | -------------------------------------------------------------------------------- /registry/lib/regexps.d.ts: -------------------------------------------------------------------------------- 1 | declare const Regexps: { 2 | escapeRegExp(str: string): string 3 | } 4 | declare namespace Regexps {} 5 | export = Regexps 6 | -------------------------------------------------------------------------------- /registry/src/external/@inquirer/confirm.js: -------------------------------------------------------------------------------- 1 | export { default } from '@inquirer/confirm' 2 | -------------------------------------------------------------------------------- /registry/src/external/@inquirer/input.js: -------------------------------------------------------------------------------- 1 | export { default } from '@inquirer/input' 2 | -------------------------------------------------------------------------------- /registry/src/external/@inquirer/password.js: -------------------------------------------------------------------------------- 1 | export { default } from '@inquirer/password' 2 | -------------------------------------------------------------------------------- /registry/src/external/@inquirer/search.js: -------------------------------------------------------------------------------- 1 | export * from '@inquirer/search' 2 | export { default } from '@inquirer/search' 3 | -------------------------------------------------------------------------------- /registry/src/external/@inquirer/select.js: -------------------------------------------------------------------------------- 1 | export * from '@inquirer/select' 2 | export { default } from '@inquirer/select' 3 | -------------------------------------------------------------------------------- /registry/src/external/@npmcli/package-json/index.js: -------------------------------------------------------------------------------- 1 | export { default } from '@npmcli/package-json' 2 | -------------------------------------------------------------------------------- /registry/src/external/@npmcli/package-json/lib/read-package.js: -------------------------------------------------------------------------------- 1 | export { default } from '@npmcli/package-json/lib/read-package.js' 2 | -------------------------------------------------------------------------------- /registry/src/external/@npmcli/package-json/lib/sort.js: -------------------------------------------------------------------------------- 1 | export { default } from '@npmcli/package-json/lib/sort.js' 2 | -------------------------------------------------------------------------------- /registry/src/external/@npmcli/promise-spawn.js: -------------------------------------------------------------------------------- 1 | export { default } from '@npmcli/promise-spawn' 2 | -------------------------------------------------------------------------------- /registry/src/external/@socketregistry/is-unicode-supported.js: -------------------------------------------------------------------------------- 1 | export { default } from '@socketregistry/is-unicode-supported/index.cjs' 2 | -------------------------------------------------------------------------------- /registry/src/external/@socketregistry/packageurl-js.js: -------------------------------------------------------------------------------- 1 | export { default } from '@socketregistry/packageurl-js' 2 | -------------------------------------------------------------------------------- /registry/src/external/@socketregistry/yocto-spinner.js: -------------------------------------------------------------------------------- 1 | export { default } from '@socketregistry/yocto-spinner/index.cjs' 2 | -------------------------------------------------------------------------------- /registry/src/external/@yarnpkg/extensions.js: -------------------------------------------------------------------------------- 1 | export { default } from '@yarnpkg/extensions' 2 | -------------------------------------------------------------------------------- /registry/src/external/ansi-regex.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ansi-regex' 2 | -------------------------------------------------------------------------------- /registry/src/external/browserslist.js: -------------------------------------------------------------------------------- 1 | export { default } from 'browserslist' 2 | -------------------------------------------------------------------------------- /registry/src/external/cacache.js: -------------------------------------------------------------------------------- 1 | export { default } from 'cacache' 2 | -------------------------------------------------------------------------------- /registry/src/external/debug.js: -------------------------------------------------------------------------------- 1 | export { default } from 'debug' 2 | -------------------------------------------------------------------------------- /registry/src/external/fast-sort.js: -------------------------------------------------------------------------------- 1 | export * from 'fast-sort' 2 | -------------------------------------------------------------------------------- /registry/src/external/libnpmpack.js: -------------------------------------------------------------------------------- 1 | export { default } from 'libnpmpack' 2 | -------------------------------------------------------------------------------- /registry/src/external/make-fetch-happen.js: -------------------------------------------------------------------------------- 1 | export { default } from 'make-fetch-happen' 2 | -------------------------------------------------------------------------------- /registry/src/external/normalize-package-data.js: -------------------------------------------------------------------------------- 1 | export { default } from 'normalize-package-data' 2 | -------------------------------------------------------------------------------- /registry/src/external/npm-package-arg.js: -------------------------------------------------------------------------------- 1 | export { default } from 'npm-package-arg' 2 | -------------------------------------------------------------------------------- /registry/src/external/pacote.js: -------------------------------------------------------------------------------- 1 | export { default } from 'pacote' 2 | -------------------------------------------------------------------------------- /registry/src/external/picomatch.js: -------------------------------------------------------------------------------- 1 | export { default } from 'picomatch' 2 | -------------------------------------------------------------------------------- /registry/src/external/semver.js: -------------------------------------------------------------------------------- 1 | export { default } from 'semver' 2 | -------------------------------------------------------------------------------- /registry/src/external/signal-exit.js: -------------------------------------------------------------------------------- 1 | export * from 'signal-exit' 2 | -------------------------------------------------------------------------------- /registry/src/external/spdx-correct.js: -------------------------------------------------------------------------------- 1 | export { default } from 'spdx-correct' 2 | -------------------------------------------------------------------------------- /registry/src/external/spdx-expression-parse.js: -------------------------------------------------------------------------------- 1 | export { default } from 'spdx-expression-parse' 2 | -------------------------------------------------------------------------------- /registry/src/external/tinyglobby.js: -------------------------------------------------------------------------------- 1 | export { default } from 'tinyglobby' 2 | -------------------------------------------------------------------------------- /registry/src/external/validate-npm-package-name.js: -------------------------------------------------------------------------------- 1 | export { default } from 'validate-npm-package-name' 2 | -------------------------------------------------------------------------------- /registry/src/external/which.js: -------------------------------------------------------------------------------- 1 | export { default } from 'which' 2 | -------------------------------------------------------------------------------- /registry/src/external/yoctocolors-cjs.js: -------------------------------------------------------------------------------- 1 | export { default } from 'yoctocolors-cjs' 2 | -------------------------------------------------------------------------------- /scripts/lib/tests.d.ts: -------------------------------------------------------------------------------- 1 | declare const Tests: { 2 | isPackageTestingSkipped(eco: string, sockRegPkgName: string): boolean 3 | } 4 | declare namespace Tests {} 5 | export = Tests 6 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-browser/LICENSE: -------------------------------------------------------------------------------- 1 | <%~ it.license %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-browser/README.md: -------------------------------------------------------------------------------- 1 | <%~ it.readme %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-browser/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for Node. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-browser/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for browser. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-esm/LICENSE: -------------------------------------------------------------------------------- 1 | <%~ it.license %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-esm/README.md: -------------------------------------------------------------------------------- 1 | <%~ it.readme %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-esm/index.cjs: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for CommonJS. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs-esm/index.d.mts: -------------------------------------------------------------------------------- 1 | // TODO: Export types from the .d.cts file. 2 | export { default /* , namedExport */ } from './index.cjs' 3 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs/LICENSE: -------------------------------------------------------------------------------- 1 | <%~ it.license %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs/README.md: -------------------------------------------------------------------------------- 1 | <%~ it.readme %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/cjs/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for package. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/LICENSE: -------------------------------------------------------------------------------- 1 | <%~ it.license %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/README.md: -------------------------------------------------------------------------------- 1 | <%~ it.readme %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for builtin constructor. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./implementation') 4 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-constructor/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/LICENSE: -------------------------------------------------------------------------------- 1 | <%~ it.license %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/README.md: -------------------------------------------------------------------------------- 1 | <%~ it.readme %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for builtin prototype method. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-prototype-method/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/LICENSE: -------------------------------------------------------------------------------- 1 | <%~ it.license %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/README.md: -------------------------------------------------------------------------------- 1 | <%~ it.readme %> 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/auto.d.ts: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/auto.js: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/implementation.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: Add export for builtin static method. 4 | module.exports = undefined 5 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function getPolyfill(): () => typeof Impl 3 | export = getPolyfill 4 | -------------------------------------------------------------------------------- /scripts/templates/npm/es-shim-static-method/shim.d.ts: -------------------------------------------------------------------------------- 1 | import Impl from './implementation' 2 | declare function shim(): () => typeof Impl 3 | export = shim 4 | -------------------------------------------------------------------------------- /socket-optimize-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocketDev/socket-registry/529f2ce8044d4125608fcfc0600f55dcb7789c5f/socket-optimize-hero.png -------------------------------------------------------------------------------- /test/npm/fixtures/fixture-bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocketDev/socket-registry/529f2ce8044d4125608fcfc0600f55dcb7789c5f/test/npm/fixtures/fixture-bun.lockb --------------------------------------------------------------------------------