├── .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