@quantiya/codevibe-codex-plugin 2.0.5 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -23
- package/dist/server.js +21 -21
- package/hooks/common.sh +506 -19
- package/libexec/companion-launcher +789 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/README.md +137 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.d.ts +5 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- package/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- package/node_modules/@isaacs/cliui/node_modules/string-width/readme.md +67 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/index.d.ts +41 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/index.js +214 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/package.json +69 -0
- package/node_modules/@isaacs/cliui/node_modules/wrap-ansi/readme.md +91 -0
- package/node_modules/@quantiya/codevibe-core/README.md +7 -5
- package/node_modules/@quantiya/codevibe-core/dist/agy-cli-contract.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +59 -31
- package/node_modules/@quantiya/codevibe-core/dist/appsync/event-throttle.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/auth/auth-telemetry.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/vendor-key-cli.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/index.d.ts +36 -22
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/persist-preference.d.ts +1 -5
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/resolve-agent.d.ts +5 -4
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +0 -5
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/upstream-result-helpers.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/broker.d.ts +196 -12
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/chatgpt-config.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-account-lock.d.ts +104 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-refresh.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/types.d.ts +165 -17
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/upstream-client.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/vendor-key-store.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/crypto/encrypt-for-emit.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/__tests__/process-guards.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/process-guards.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +17 -2
- package/node_modules/@quantiya/codevibe-core/dist/index.js +308 -281
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-manager.d.ts +25 -4
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/reviewer-rationale-flag.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-sign.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/group-decision-outcome.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/implementor-argv.d.ts +89 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/local-executor-impl.d.ts +18 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-conflict-resolve.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-reconcile.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/types.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/detect-agents.d.ts +10 -30
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/index.d.ts +1 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a1a-planner-offers.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a6-cli-surface.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachments-dir-race.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-multi-mention-panel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-panel-attachments.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-quota-stdout-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/agent-turn-context-batch.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/bounded-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cli-team-session-key.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/command-intent.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-compaction.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-hosted-sync.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-full-team-events.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-team-decomposed-zk.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/explicit-tty-exit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mention-suggest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-summarize-recovery.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/attachments.d.ts +58 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/bounded-shutdown.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +97 -70
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +30990 -22426
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/command-intent.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +264 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items-hosted-sync.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +408 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +162 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +34 -13
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/explicit-tty-exit.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-prompts.d.ts +3 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +306 -37
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mention-suggest.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +4 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +336 -20
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +37 -19
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +71 -4
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +0 -2
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +9 -6
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/antigravity.d.ts +2 -3
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/registry.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/token-usage.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/device-registration-lease.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/pending-session-create.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-rekey-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-key-reconciliation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-pending-first.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/device-key-watcher.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/session/pending-session-create.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/register-device-key.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-rekey.d.ts +4 -5
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/docker.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +17 -3
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +32 -3
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +24 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/consolidator.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/digest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/flock-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/ledger.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/outbox.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/replay-cursor.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/session-map.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/socket-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/atomic-file.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/consolidator.d.ts +253 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/digest.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/flock-rollout-lock.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/index.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/ledger.d.ts +274 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/outbox.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/replay-cursor.d.ts +156 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/session-map.d.ts +133 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/socket-rollout-lock.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +368 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/encryption.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/events.d.ts +24 -4
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +32 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/README.md +207 -163
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.js +113 -193
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.js +1 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.js +6 -32
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.js +6 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.js +62 -88
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.js +27 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.js +78 -90
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.js +30 -57
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.js +21 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.js +2 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.js +5 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/package.json +73 -76
- package/node_modules/@quantiya/codevibe-core/package.json +6 -5
- package/node_modules/ansi-styles/index.d.ts +232 -341
- package/node_modules/ansi-styles/index.js +190 -130
- package/node_modules/ansi-styles/license +1 -1
- package/node_modules/ansi-styles/package.json +8 -10
- package/node_modules/ansi-styles/readme.md +53 -32
- package/node_modules/body-parser/README.md +34 -19
- package/node_modules/body-parser/index.js +10 -35
- package/node_modules/body-parser/lib/read.js +34 -37
- package/node_modules/body-parser/lib/types/json.js +68 -48
- package/node_modules/body-parser/lib/types/raw.js +6 -7
- package/node_modules/body-parser/lib/types/text.js +6 -7
- package/node_modules/body-parser/lib/types/urlencoded.js +23 -27
- package/node_modules/body-parser/lib/utils.js +29 -25
- package/node_modules/body-parser/node_modules/content-type/LICENSE +22 -0
- package/node_modules/body-parser/node_modules/content-type/README.md +69 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.d.ts +26 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.js +170 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.js.map +1 -0
- package/node_modules/body-parser/node_modules/content-type/package.json +52 -0
- package/node_modules/body-parser/package.json +23 -10
- package/node_modules/brace-expansion/.tap/coverage/8b906b8c-e21f-40b5-8c0d-214d8c2682c5.json +757 -0
- package/node_modules/brace-expansion/.tap/processinfo/8b906b8c-e21f-40b5-8c0d-214d8c2682c5.json +719 -0
- package/node_modules/brace-expansion/ADVISORY-CVE-2026-14257.md +107 -0
- package/node_modules/brace-expansion/dist/commonjs/index.d.ts +8 -0
- package/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/brace-expansion/dist/commonjs/index.js +263 -0
- package/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
- package/node_modules/brace-expansion/dist/esm/index.d.ts +8 -0
- package/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
- package/node_modules/brace-expansion/dist/esm/index.js +259 -0
- package/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
- package/node_modules/brace-expansion/index.js +39 -24
- package/node_modules/brace-expansion/package.json +1 -1
- package/node_modules/cli-truncate/index.js +194 -0
- package/node_modules/cli-truncate/package.json +52 -0
- package/node_modules/content-disposition/README.md +7 -8
- package/node_modules/content-disposition/index.js +118 -40
- package/node_modules/content-disposition/package.json +8 -11
- package/node_modules/cross-spawn/node_modules/isexe/README.md +51 -0
- package/node_modules/cross-spawn/node_modules/isexe/package.json +31 -0
- package/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- package/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- package/node_modules/emoji-regex/README.md +6 -70
- package/node_modules/emoji-regex/es2015/index.js +1 -1
- package/node_modules/emoji-regex/es2015/text.js +1 -1
- package/node_modules/emoji-regex/index.d.ts +20 -2
- package/node_modules/emoji-regex/index.js +1 -1
- package/node_modules/emoji-regex/package.json +11 -13
- package/node_modules/emoji-regex/text.js +1 -1
- package/node_modules/es-object-atoms/CHANGELOG.md +21 -14
- package/node_modules/es-object-atoms/isObject.d.ts +1 -1
- package/node_modules/es-object-atoms/package.json +6 -7
- package/node_modules/es-object-atoms/tsconfig.json +1 -0
- package/node_modules/es-toolkit/CHANGELOG.md +80 -0
- package/node_modules/es-toolkit/LICENSE +1 -5
- package/node_modules/es-toolkit/README.md +1 -1
- package/node_modules/es-toolkit/compat/add.d.mts +1 -0
- package/node_modules/es-toolkit/compat/add.mjs +1 -0
- package/node_modules/es-toolkit/compat/after.d.mts +1 -0
- package/node_modules/es-toolkit/compat/after.mjs +1 -0
- package/node_modules/es-toolkit/compat/ary.d.mts +1 -0
- package/node_modules/es-toolkit/compat/ary.mjs +1 -0
- package/node_modules/es-toolkit/compat/assign.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assign.mjs +1 -0
- package/node_modules/es-toolkit/compat/assignIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assignIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/assignInWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assignInWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/assignWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/assignWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/at.d.mts +1 -0
- package/node_modules/es-toolkit/compat/at.mjs +1 -0
- package/node_modules/es-toolkit/compat/attempt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/attempt.mjs +1 -0
- package/node_modules/es-toolkit/compat/before.d.mts +1 -0
- package/node_modules/es-toolkit/compat/before.mjs +1 -0
- package/node_modules/es-toolkit/compat/bind.d.mts +1 -0
- package/node_modules/es-toolkit/compat/bind.mjs +1 -0
- package/node_modules/es-toolkit/compat/bindAll.d.mts +1 -0
- package/node_modules/es-toolkit/compat/bindAll.mjs +1 -0
- package/node_modules/es-toolkit/compat/bindKey.d.mts +1 -0
- package/node_modules/es-toolkit/compat/bindKey.mjs +1 -0
- package/node_modules/es-toolkit/compat/camelCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/camelCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/capitalize.d.mts +1 -0
- package/node_modules/es-toolkit/compat/capitalize.mjs +1 -0
- package/node_modules/es-toolkit/compat/castArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/castArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/ceil.d.mts +1 -0
- package/node_modules/es-toolkit/compat/ceil.mjs +1 -0
- package/node_modules/es-toolkit/compat/chunk.d.mts +1 -0
- package/node_modules/es-toolkit/compat/chunk.mjs +1 -0
- package/node_modules/es-toolkit/compat/clamp.d.mts +1 -0
- package/node_modules/es-toolkit/compat/clamp.mjs +1 -0
- package/node_modules/es-toolkit/compat/clone.d.mts +1 -0
- package/node_modules/es-toolkit/compat/clone.mjs +1 -0
- package/node_modules/es-toolkit/compat/cloneDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cloneDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/cloneDeepWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cloneDeepWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/cloneWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cloneWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/compact.d.mts +1 -0
- package/node_modules/es-toolkit/compat/compact.mjs +1 -0
- package/node_modules/es-toolkit/compat/concat.d.mts +1 -0
- package/node_modules/es-toolkit/compat/concat.mjs +1 -0
- package/node_modules/es-toolkit/compat/cond.d.mts +1 -0
- package/node_modules/es-toolkit/compat/cond.mjs +1 -0
- package/node_modules/es-toolkit/compat/conforms.d.mts +1 -0
- package/node_modules/es-toolkit/compat/conforms.mjs +1 -0
- package/node_modules/es-toolkit/compat/conformsTo.d.mts +1 -0
- package/node_modules/es-toolkit/compat/conformsTo.mjs +1 -0
- package/node_modules/es-toolkit/compat/constant.d.mts +1 -0
- package/node_modules/es-toolkit/compat/constant.mjs +1 -0
- package/node_modules/es-toolkit/compat/countBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/countBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/create.d.mts +1 -0
- package/node_modules/es-toolkit/compat/create.mjs +1 -0
- package/node_modules/es-toolkit/compat/curry.d.mts +1 -0
- package/node_modules/es-toolkit/compat/curry.mjs +1 -0
- package/node_modules/es-toolkit/compat/curryRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/curryRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/debounce.d.mts +1 -0
- package/node_modules/es-toolkit/compat/debounce.mjs +1 -0
- package/node_modules/es-toolkit/compat/deburr.d.mts +1 -0
- package/node_modules/es-toolkit/compat/deburr.mjs +1 -0
- package/node_modules/es-toolkit/compat/defaultTo.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defaultTo.mjs +1 -0
- package/node_modules/es-toolkit/compat/defaults.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defaults.mjs +1 -0
- package/node_modules/es-toolkit/compat/defaultsDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defaultsDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/defer.d.mts +1 -0
- package/node_modules/es-toolkit/compat/defer.mjs +1 -0
- package/node_modules/es-toolkit/compat/delay.d.mts +1 -0
- package/node_modules/es-toolkit/compat/delay.mjs +1 -0
- package/node_modules/es-toolkit/compat/difference.d.mts +1 -0
- package/node_modules/es-toolkit/compat/difference.mjs +1 -0
- package/node_modules/es-toolkit/compat/differenceBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/differenceBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/differenceWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/differenceWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/divide.d.mts +1 -0
- package/node_modules/es-toolkit/compat/divide.mjs +1 -0
- package/node_modules/es-toolkit/compat/drop.d.mts +1 -0
- package/node_modules/es-toolkit/compat/drop.mjs +1 -0
- package/node_modules/es-toolkit/compat/dropRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/dropRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/dropRightWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/dropRightWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/dropWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/dropWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/each.d.mts +1 -0
- package/node_modules/es-toolkit/compat/each.mjs +1 -0
- package/node_modules/es-toolkit/compat/eachRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/eachRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/endsWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/endsWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/eq.d.mts +1 -0
- package/node_modules/es-toolkit/compat/eq.mjs +1 -0
- package/node_modules/es-toolkit/compat/escape.d.mts +1 -0
- package/node_modules/es-toolkit/compat/escape.mjs +1 -0
- package/node_modules/es-toolkit/compat/escapeRegExp.d.mts +1 -0
- package/node_modules/es-toolkit/compat/escapeRegExp.mjs +1 -0
- package/node_modules/es-toolkit/compat/every.d.mts +1 -0
- package/node_modules/es-toolkit/compat/every.mjs +1 -0
- package/node_modules/es-toolkit/compat/extend.d.mts +1 -0
- package/node_modules/es-toolkit/compat/extend.mjs +1 -0
- package/node_modules/es-toolkit/compat/extendWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/extendWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/fill.d.mts +1 -0
- package/node_modules/es-toolkit/compat/fill.mjs +1 -0
- package/node_modules/es-toolkit/compat/filter.d.mts +1 -0
- package/node_modules/es-toolkit/compat/filter.mjs +1 -0
- package/node_modules/es-toolkit/compat/find.d.mts +1 -0
- package/node_modules/es-toolkit/compat/find.mjs +1 -0
- package/node_modules/es-toolkit/compat/findIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/findKey.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findKey.mjs +1 -0
- package/node_modules/es-toolkit/compat/findLast.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findLast.mjs +1 -0
- package/node_modules/es-toolkit/compat/findLastIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findLastIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/findLastKey.d.mts +1 -0
- package/node_modules/es-toolkit/compat/findLastKey.mjs +1 -0
- package/node_modules/es-toolkit/compat/first.d.mts +1 -0
- package/node_modules/es-toolkit/compat/first.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatMapDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatMapDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatMapDepth.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatMapDepth.mjs +1 -0
- package/node_modules/es-toolkit/compat/flatten.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flatten.mjs +1 -0
- package/node_modules/es-toolkit/compat/flattenDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flattenDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/flattenDepth.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flattenDepth.mjs +1 -0
- package/node_modules/es-toolkit/compat/flip.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flip.mjs +1 -0
- package/node_modules/es-toolkit/compat/floor.d.mts +1 -0
- package/node_modules/es-toolkit/compat/floor.mjs +1 -0
- package/node_modules/es-toolkit/compat/flow.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flow.mjs +1 -0
- package/node_modules/es-toolkit/compat/flowRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/flowRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/forEach.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forEach.mjs +1 -0
- package/node_modules/es-toolkit/compat/forEachRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forEachRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/forIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/forInRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forInRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/forOwn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forOwn.mjs +1 -0
- package/node_modules/es-toolkit/compat/forOwnRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/forOwnRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/fromPairs.d.mts +1 -0
- package/node_modules/es-toolkit/compat/fromPairs.mjs +1 -0
- package/node_modules/es-toolkit/compat/functions.d.mts +1 -0
- package/node_modules/es-toolkit/compat/functions.mjs +1 -0
- package/node_modules/es-toolkit/compat/functionsIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/functionsIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/get.d.mts +1 -0
- package/node_modules/es-toolkit/compat/get.mjs +1 -0
- package/node_modules/es-toolkit/compat/groupBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/groupBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/gt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/gt.mjs +1 -0
- package/node_modules/es-toolkit/compat/gte.d.mts +1 -0
- package/node_modules/es-toolkit/compat/gte.mjs +1 -0
- package/node_modules/es-toolkit/compat/has.d.mts +1 -0
- package/node_modules/es-toolkit/compat/has.mjs +1 -0
- package/node_modules/es-toolkit/compat/hasIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/hasIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/head.d.mts +1 -0
- package/node_modules/es-toolkit/compat/head.mjs +1 -0
- package/node_modules/es-toolkit/compat/identity.d.mts +1 -0
- package/node_modules/es-toolkit/compat/identity.mjs +1 -0
- package/node_modules/es-toolkit/compat/inRange.d.mts +1 -0
- package/node_modules/es-toolkit/compat/inRange.mjs +1 -0
- package/node_modules/es-toolkit/compat/includes.d.mts +1 -0
- package/node_modules/es-toolkit/compat/includes.mjs +1 -0
- package/node_modules/es-toolkit/compat/indexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/indexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/initial.d.mts +1 -0
- package/node_modules/es-toolkit/compat/initial.mjs +1 -0
- package/node_modules/es-toolkit/compat/intersection.d.mts +1 -0
- package/node_modules/es-toolkit/compat/intersection.mjs +1 -0
- package/node_modules/es-toolkit/compat/intersectionBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/intersectionBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/intersectionWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/intersectionWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/invert.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invert.mjs +1 -0
- package/node_modules/es-toolkit/compat/invertBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invertBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/invoke.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invoke.mjs +1 -0
- package/node_modules/es-toolkit/compat/invokeMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/invokeMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArguments.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArguments.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArrayBuffer.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArrayBuffer.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArrayLike.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArrayLike.mjs +1 -0
- package/node_modules/es-toolkit/compat/isArrayLikeObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isArrayLikeObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/isBoolean.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isBoolean.mjs +1 -0
- package/node_modules/es-toolkit/compat/isBuffer.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isBuffer.mjs +1 -0
- package/node_modules/es-toolkit/compat/isDate.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isDate.mjs +1 -0
- package/node_modules/es-toolkit/compat/isElement.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isElement.mjs +1 -0
- package/node_modules/es-toolkit/compat/isEmpty.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isEmpty.mjs +1 -0
- package/node_modules/es-toolkit/compat/isEqual.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isEqual.mjs +1 -0
- package/node_modules/es-toolkit/compat/isEqualWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isEqualWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/isError.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isError.mjs +1 -0
- package/node_modules/es-toolkit/compat/isFinite.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isFinite.mjs +1 -0
- package/node_modules/es-toolkit/compat/isFunction.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isFunction.mjs +1 -0
- package/node_modules/es-toolkit/compat/isInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/isLength.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isLength.mjs +1 -0
- package/node_modules/es-toolkit/compat/isMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/isMatch.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isMatch.mjs +1 -0
- package/node_modules/es-toolkit/compat/isMatchWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isMatchWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNaN.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNaN.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNative.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNative.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNil.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNil.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNull.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNull.mjs +1 -0
- package/node_modules/es-toolkit/compat/isNumber.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isNumber.mjs +1 -0
- package/node_modules/es-toolkit/compat/isObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/isObjectLike.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isObjectLike.mjs +1 -0
- package/node_modules/es-toolkit/compat/isPlainObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isPlainObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/isRegExp.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isRegExp.mjs +1 -0
- package/node_modules/es-toolkit/compat/isSafeInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isSafeInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/isSet.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isSet.mjs +1 -0
- package/node_modules/es-toolkit/compat/isString.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isString.mjs +1 -0
- package/node_modules/es-toolkit/compat/isSymbol.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isSymbol.mjs +1 -0
- package/node_modules/es-toolkit/compat/isTypedArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isTypedArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/isUndefined.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isUndefined.mjs +1 -0
- package/node_modules/es-toolkit/compat/isWeakMap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isWeakMap.mjs +1 -0
- package/node_modules/es-toolkit/compat/isWeakSet.d.mts +1 -0
- package/node_modules/es-toolkit/compat/isWeakSet.mjs +1 -0
- package/node_modules/es-toolkit/compat/iteratee.d.mts +1 -0
- package/node_modules/es-toolkit/compat/iteratee.mjs +1 -0
- package/node_modules/es-toolkit/compat/join.d.mts +1 -0
- package/node_modules/es-toolkit/compat/join.mjs +1 -0
- package/node_modules/es-toolkit/compat/kebabCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/kebabCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/keyBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/keyBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/keys.d.mts +1 -0
- package/node_modules/es-toolkit/compat/keys.mjs +1 -0
- package/node_modules/es-toolkit/compat/keysIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/keysIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/last.d.mts +1 -0
- package/node_modules/es-toolkit/compat/last.mjs +1 -0
- package/node_modules/es-toolkit/compat/lastIndexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lastIndexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/lowerCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lowerCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/lowerFirst.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lowerFirst.mjs +1 -0
- package/node_modules/es-toolkit/compat/lt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lt.mjs +1 -0
- package/node_modules/es-toolkit/compat/lte.d.mts +1 -0
- package/node_modules/es-toolkit/compat/lte.mjs +1 -0
- package/node_modules/es-toolkit/compat/map.d.mts +1 -0
- package/node_modules/es-toolkit/compat/map.mjs +1 -0
- package/node_modules/es-toolkit/compat/mapKeys.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mapKeys.mjs +1 -0
- package/node_modules/es-toolkit/compat/mapValues.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mapValues.mjs +1 -0
- package/node_modules/es-toolkit/compat/matches.d.mts +1 -0
- package/node_modules/es-toolkit/compat/matches.mjs +1 -0
- package/node_modules/es-toolkit/compat/matchesProperty.d.mts +1 -0
- package/node_modules/es-toolkit/compat/matchesProperty.mjs +1 -0
- package/node_modules/es-toolkit/compat/max.d.mts +1 -0
- package/node_modules/es-toolkit/compat/max.mjs +1 -0
- package/node_modules/es-toolkit/compat/maxBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/maxBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/mean.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mean.mjs +1 -0
- package/node_modules/es-toolkit/compat/meanBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/meanBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/memoize.d.mts +1 -0
- package/node_modules/es-toolkit/compat/memoize.mjs +1 -0
- package/node_modules/es-toolkit/compat/merge.d.mts +1 -0
- package/node_modules/es-toolkit/compat/merge.mjs +1 -0
- package/node_modules/es-toolkit/compat/mergeWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/mergeWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/method.d.mts +1 -0
- package/node_modules/es-toolkit/compat/method.mjs +1 -0
- package/node_modules/es-toolkit/compat/methodOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/methodOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/min.d.mts +1 -0
- package/node_modules/es-toolkit/compat/min.mjs +1 -0
- package/node_modules/es-toolkit/compat/minBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/minBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/multiply.d.mts +1 -0
- package/node_modules/es-toolkit/compat/multiply.mjs +1 -0
- package/node_modules/es-toolkit/compat/negate.d.mts +1 -0
- package/node_modules/es-toolkit/compat/negate.mjs +1 -0
- package/node_modules/es-toolkit/compat/noop.d.mts +1 -0
- package/node_modules/es-toolkit/compat/noop.mjs +1 -0
- package/node_modules/es-toolkit/compat/now.d.mts +1 -0
- package/node_modules/es-toolkit/compat/now.mjs +1 -0
- package/node_modules/es-toolkit/compat/nth.d.mts +1 -0
- package/node_modules/es-toolkit/compat/nth.mjs +1 -0
- package/node_modules/es-toolkit/compat/nthArg.d.mts +1 -0
- package/node_modules/es-toolkit/compat/nthArg.mjs +1 -0
- package/node_modules/es-toolkit/compat/omit.d.mts +1 -0
- package/node_modules/es-toolkit/compat/omit.mjs +1 -0
- package/node_modules/es-toolkit/compat/omitBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/omitBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/once.d.mts +1 -0
- package/node_modules/es-toolkit/compat/once.mjs +1 -0
- package/node_modules/es-toolkit/compat/orderBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/orderBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/over.d.mts +1 -0
- package/node_modules/es-toolkit/compat/over.mjs +1 -0
- package/node_modules/es-toolkit/compat/overArgs.d.mts +1 -0
- package/node_modules/es-toolkit/compat/overArgs.mjs +1 -0
- package/node_modules/es-toolkit/compat/overEvery.d.mts +1 -0
- package/node_modules/es-toolkit/compat/overEvery.mjs +1 -0
- package/node_modules/es-toolkit/compat/overSome.d.mts +1 -0
- package/node_modules/es-toolkit/compat/overSome.mjs +1 -0
- package/node_modules/es-toolkit/compat/pad.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pad.mjs +1 -0
- package/node_modules/es-toolkit/compat/padEnd.d.mts +1 -0
- package/node_modules/es-toolkit/compat/padEnd.mjs +1 -0
- package/node_modules/es-toolkit/compat/padStart.d.mts +1 -0
- package/node_modules/es-toolkit/compat/padStart.mjs +1 -0
- package/node_modules/es-toolkit/compat/parseInt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/parseInt.mjs +1 -0
- package/node_modules/es-toolkit/compat/partial.d.mts +1 -0
- package/node_modules/es-toolkit/compat/partial.mjs +1 -0
- package/node_modules/es-toolkit/compat/partialRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/partialRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/partition.d.mts +1 -0
- package/node_modules/es-toolkit/compat/partition.mjs +1 -0
- package/node_modules/es-toolkit/compat/pick.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pick.mjs +1 -0
- package/node_modules/es-toolkit/compat/pickBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pickBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/property.d.mts +1 -0
- package/node_modules/es-toolkit/compat/property.mjs +1 -0
- package/node_modules/es-toolkit/compat/propertyOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/propertyOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/pull.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pull.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAll.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAll.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAllBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAllBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAllWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAllWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/pullAt.d.mts +1 -0
- package/node_modules/es-toolkit/compat/pullAt.mjs +1 -0
- package/node_modules/es-toolkit/compat/random.d.mts +1 -0
- package/node_modules/es-toolkit/compat/random.mjs +1 -0
- package/node_modules/es-toolkit/compat/range.d.mts +1 -0
- package/node_modules/es-toolkit/compat/range.mjs +1 -0
- package/node_modules/es-toolkit/compat/rangeRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/rangeRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/rearg.d.mts +1 -0
- package/node_modules/es-toolkit/compat/rearg.mjs +1 -0
- package/node_modules/es-toolkit/compat/reduce.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reduce.mjs +1 -0
- package/node_modules/es-toolkit/compat/reduceRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reduceRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/reject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reject.mjs +1 -0
- package/node_modules/es-toolkit/compat/remove.d.mts +1 -0
- package/node_modules/es-toolkit/compat/remove.mjs +1 -0
- package/node_modules/es-toolkit/compat/repeat.d.mts +1 -0
- package/node_modules/es-toolkit/compat/repeat.mjs +1 -0
- package/node_modules/es-toolkit/compat/replace.d.mts +1 -0
- package/node_modules/es-toolkit/compat/replace.mjs +1 -0
- package/node_modules/es-toolkit/compat/rest.d.mts +1 -0
- package/node_modules/es-toolkit/compat/rest.mjs +1 -0
- package/node_modules/es-toolkit/compat/result.d.mts +1 -0
- package/node_modules/es-toolkit/compat/result.mjs +1 -0
- package/node_modules/es-toolkit/compat/reverse.d.mts +1 -0
- package/node_modules/es-toolkit/compat/reverse.mjs +1 -0
- package/node_modules/es-toolkit/compat/round.d.mts +1 -0
- package/node_modules/es-toolkit/compat/round.mjs +1 -0
- package/node_modules/es-toolkit/compat/sample.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sample.mjs +1 -0
- package/node_modules/es-toolkit/compat/sampleSize.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sampleSize.mjs +1 -0
- package/node_modules/es-toolkit/compat/set.d.mts +1 -0
- package/node_modules/es-toolkit/compat/set.mjs +1 -0
- package/node_modules/es-toolkit/compat/setWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/setWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/shuffle.d.mts +1 -0
- package/node_modules/es-toolkit/compat/shuffle.mjs +1 -0
- package/node_modules/es-toolkit/compat/size.d.mts +1 -0
- package/node_modules/es-toolkit/compat/size.mjs +1 -0
- package/node_modules/es-toolkit/compat/slice.d.mts +1 -0
- package/node_modules/es-toolkit/compat/slice.mjs +1 -0
- package/node_modules/es-toolkit/compat/snakeCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/snakeCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/some.d.mts +1 -0
- package/node_modules/es-toolkit/compat/some.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedIndexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndex.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndex.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexOf.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sortedLastIndexOf.mjs +1 -0
- package/node_modules/es-toolkit/compat/split.d.mts +1 -0
- package/node_modules/es-toolkit/compat/split.mjs +1 -0
- package/node_modules/es-toolkit/compat/spread.d.mts +1 -0
- package/node_modules/es-toolkit/compat/spread.mjs +1 -0
- package/node_modules/es-toolkit/compat/startCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/startCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/startsWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/startsWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubFalse.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubFalse.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubString.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubString.mjs +1 -0
- package/node_modules/es-toolkit/compat/stubTrue.d.mts +1 -0
- package/node_modules/es-toolkit/compat/stubTrue.mjs +1 -0
- package/node_modules/es-toolkit/compat/subtract.d.mts +1 -0
- package/node_modules/es-toolkit/compat/subtract.mjs +1 -0
- package/node_modules/es-toolkit/compat/sum.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sum.mjs +1 -0
- package/node_modules/es-toolkit/compat/sumBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/sumBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/tail.d.mts +1 -0
- package/node_modules/es-toolkit/compat/tail.mjs +1 -0
- package/node_modules/es-toolkit/compat/take.d.mts +1 -0
- package/node_modules/es-toolkit/compat/take.mjs +1 -0
- package/node_modules/es-toolkit/compat/takeRight.d.mts +1 -0
- package/node_modules/es-toolkit/compat/takeRight.mjs +1 -0
- package/node_modules/es-toolkit/compat/takeRightWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/takeRightWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/takeWhile.d.mts +1 -0
- package/node_modules/es-toolkit/compat/takeWhile.mjs +1 -0
- package/node_modules/es-toolkit/compat/template.d.mts +1 -0
- package/node_modules/es-toolkit/compat/template.mjs +1 -0
- package/node_modules/es-toolkit/compat/templateSettings.d.mts +1 -0
- package/node_modules/es-toolkit/compat/templateSettings.mjs +1 -0
- package/node_modules/es-toolkit/compat/throttle.d.mts +1 -0
- package/node_modules/es-toolkit/compat/throttle.mjs +1 -0
- package/node_modules/es-toolkit/compat/times.d.mts +1 -0
- package/node_modules/es-toolkit/compat/times.mjs +1 -0
- package/node_modules/es-toolkit/compat/toArray.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toArray.mjs +1 -0
- package/node_modules/es-toolkit/compat/toDefaulted.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toDefaulted.mjs +1 -0
- package/node_modules/es-toolkit/compat/toFinite.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toFinite.mjs +1 -0
- package/node_modules/es-toolkit/compat/toInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/toLength.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toLength.mjs +1 -0
- package/node_modules/es-toolkit/compat/toLower.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toLower.mjs +1 -0
- package/node_modules/es-toolkit/compat/toNumber.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toNumber.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPairs.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPairs.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPairsIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPairsIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPath.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPath.mjs +1 -0
- package/node_modules/es-toolkit/compat/toPlainObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toPlainObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/toSafeInteger.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toSafeInteger.mjs +1 -0
- package/node_modules/es-toolkit/compat/toString.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toString.mjs +1 -0
- package/node_modules/es-toolkit/compat/toUpper.d.mts +1 -0
- package/node_modules/es-toolkit/compat/toUpper.mjs +1 -0
- package/node_modules/es-toolkit/compat/transform.d.mts +1 -0
- package/node_modules/es-toolkit/compat/transform.mjs +1 -0
- package/node_modules/es-toolkit/compat/trim.d.mts +1 -0
- package/node_modules/es-toolkit/compat/trim.mjs +1 -0
- package/node_modules/es-toolkit/compat/trimEnd.d.mts +1 -0
- package/node_modules/es-toolkit/compat/trimEnd.mjs +1 -0
- package/node_modules/es-toolkit/compat/trimStart.d.mts +1 -0
- package/node_modules/es-toolkit/compat/trimStart.mjs +1 -0
- package/node_modules/es-toolkit/compat/truncate.d.mts +1 -0
- package/node_modules/es-toolkit/compat/truncate.mjs +1 -0
- package/node_modules/es-toolkit/compat/unary.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unary.mjs +1 -0
- package/node_modules/es-toolkit/compat/unescape.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unescape.mjs +1 -0
- package/node_modules/es-toolkit/compat/union.d.mts +1 -0
- package/node_modules/es-toolkit/compat/union.mjs +1 -0
- package/node_modules/es-toolkit/compat/unionBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unionBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/unionWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unionWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniq.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniq.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniqBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniqBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniqWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniqWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/uniqueId.d.mts +1 -0
- package/node_modules/es-toolkit/compat/uniqueId.mjs +1 -0
- package/node_modules/es-toolkit/compat/unset.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unset.mjs +1 -0
- package/node_modules/es-toolkit/compat/unzip.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unzip.mjs +1 -0
- package/node_modules/es-toolkit/compat/unzipWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/unzipWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/update.d.mts +1 -0
- package/node_modules/es-toolkit/compat/update.mjs +1 -0
- package/node_modules/es-toolkit/compat/updateWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/updateWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/upperCase.d.mts +1 -0
- package/node_modules/es-toolkit/compat/upperCase.mjs +1 -0
- package/node_modules/es-toolkit/compat/upperFirst.d.mts +1 -0
- package/node_modules/es-toolkit/compat/upperFirst.mjs +1 -0
- package/node_modules/es-toolkit/compat/values.d.mts +1 -0
- package/node_modules/es-toolkit/compat/values.mjs +1 -0
- package/node_modules/es-toolkit/compat/valuesIn.d.mts +1 -0
- package/node_modules/es-toolkit/compat/valuesIn.mjs +1 -0
- package/node_modules/es-toolkit/compat/without.d.mts +1 -0
- package/node_modules/es-toolkit/compat/without.mjs +1 -0
- package/node_modules/es-toolkit/compat/words.d.mts +1 -0
- package/node_modules/es-toolkit/compat/words.mjs +1 -0
- package/node_modules/es-toolkit/compat/wrap.d.mts +1 -0
- package/node_modules/es-toolkit/compat/wrap.mjs +1 -0
- package/node_modules/es-toolkit/compat/xor.d.mts +1 -0
- package/node_modules/es-toolkit/compat/xor.mjs +1 -0
- package/node_modules/es-toolkit/compat/xorBy.d.mts +1 -0
- package/node_modules/es-toolkit/compat/xorBy.mjs +1 -0
- package/node_modules/es-toolkit/compat/xorWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/xorWith.mjs +1 -0
- package/node_modules/es-toolkit/compat/zip.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zip.mjs +1 -0
- package/node_modules/es-toolkit/compat/zipObject.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zipObject.mjs +1 -0
- package/node_modules/es-toolkit/compat/zipObjectDeep.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zipObjectDeep.mjs +1 -0
- package/node_modules/es-toolkit/compat/zipWith.d.mts +1 -0
- package/node_modules/es-toolkit/compat/zipWith.mjs +1 -0
- package/node_modules/es-toolkit/dist/_internal/DOMException.d.mts +4 -3
- package/node_modules/es-toolkit/dist/_internal/DOMException.d.ts +4 -3
- package/node_modules/es-toolkit/dist/_internal/DOMException.js +4 -10
- package/node_modules/es-toolkit/dist/_internal/DOMException.mjs +4 -6
- package/node_modules/es-toolkit/dist/_internal/compareValues.js +18 -12
- package/node_modules/es-toolkit/dist/_internal/compareValues.mjs +18 -8
- package/node_modules/es-toolkit/dist/_internal/globalThis.d.mts +3 -2
- package/node_modules/es-toolkit/dist/_internal/globalThis.d.ts +3 -2
- package/node_modules/es-toolkit/dist/_internal/globalThis.js +6 -14
- package/node_modules/es-toolkit/dist/_internal/globalThis.mjs +6 -10
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.d.mts +3 -2
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.d.ts +3 -2
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.js +16 -6
- package/node_modules/es-toolkit/dist/_internal/isEqualsSameValueZero.mjs +16 -2
- package/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.js +13 -6
- package/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.mjs +13 -2
- package/node_modules/es-toolkit/dist/_virtual/_rolldown/runtime.js +13 -0
- package/node_modules/es-toolkit/dist/_virtual/_rolldown/runtime.mjs +13 -0
- package/node_modules/es-toolkit/dist/array/at.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/at.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/at.js +26 -16
- package/node_modules/es-toolkit/dist/array/at.mjs +26 -12
- package/node_modules/es-toolkit/dist/array/cartesianProduct.d.mts +75 -0
- package/node_modules/es-toolkit/dist/array/cartesianProduct.d.ts +75 -0
- package/node_modules/es-toolkit/dist/array/cartesianProduct.js +23 -0
- package/node_modules/es-toolkit/dist/array/cartesianProduct.mjs +23 -0
- package/node_modules/es-toolkit/dist/array/chunk.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/chunk.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/chunk.js +34 -16
- package/node_modules/es-toolkit/dist/array/chunk.mjs +34 -12
- package/node_modules/es-toolkit/dist/array/chunkBy.d.mts +32 -0
- package/node_modules/es-toolkit/dist/array/chunkBy.d.ts +32 -0
- package/node_modules/es-toolkit/dist/array/chunkBy.js +42 -0
- package/node_modules/es-toolkit/dist/array/chunkBy.mjs +42 -0
- package/node_modules/es-toolkit/dist/array/combinations.d.mts +35 -0
- package/node_modules/es-toolkit/dist/array/combinations.d.ts +35 -0
- package/node_modules/es-toolkit/dist/array/combinations.js +53 -0
- package/node_modules/es-toolkit/dist/array/combinations.mjs +53 -0
- package/node_modules/es-toolkit/dist/array/compact.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/compact.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/compact.js +19 -13
- package/node_modules/es-toolkit/dist/array/compact.mjs +19 -9
- package/node_modules/es-toolkit/dist/array/countBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/countBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/countBy.js +42 -12
- package/node_modules/es-toolkit/dist/array/countBy.mjs +42 -8
- package/node_modules/es-toolkit/dist/array/difference.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/difference.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/difference.js +26 -7
- package/node_modules/es-toolkit/dist/array/difference.mjs +26 -3
- package/node_modules/es-toolkit/dist/array/differenceBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceBy.js +38 -9
- package/node_modules/es-toolkit/dist/array/differenceBy.mjs +38 -5
- package/node_modules/es-toolkit/dist/array/differenceWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/differenceWith.js +35 -10
- package/node_modules/es-toolkit/dist/array/differenceWith.mjs +35 -6
- package/node_modules/es-toolkit/dist/array/drop.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/drop.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/drop.js +20 -7
- package/node_modules/es-toolkit/dist/array/drop.mjs +20 -3
- package/node_modules/es-toolkit/dist/array/dropRight.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRight.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRight.js +21 -10
- package/node_modules/es-toolkit/dist/array/dropRight.mjs +21 -6
- package/node_modules/es-toolkit/dist/array/dropRightWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRightWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/dropRightWhile.js +22 -11
- package/node_modules/es-toolkit/dist/array/dropRightWhile.mjs +22 -7
- package/node_modules/es-toolkit/dist/array/dropWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/dropWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/dropWhile.js +23 -10
- package/node_modules/es-toolkit/dist/array/dropWhile.mjs +23 -6
- package/node_modules/es-toolkit/dist/array/fill.d.mts +15 -14
- package/node_modules/es-toolkit/dist/array/fill.d.ts +15 -14
- package/node_modules/es-toolkit/dist/array/fill.js +35 -12
- package/node_modules/es-toolkit/dist/array/fill.mjs +35 -8
- package/node_modules/es-toolkit/dist/array/filterAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/filterAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/filterAsync.js +35 -12
- package/node_modules/es-toolkit/dist/array/filterAsync.mjs +35 -8
- package/node_modules/es-toolkit/dist/array/flatMap.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMap.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMap.js +24 -8
- package/node_modules/es-toolkit/dist/array/flatMap.mjs +24 -4
- package/node_modules/es-toolkit/dist/array/flatMapAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/flatMapAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/flatMapAsync.js +38 -13
- package/node_modules/es-toolkit/dist/array/flatMapAsync.mjs +37 -9
- package/node_modules/es-toolkit/dist/array/flatMapDeep.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMapDeep.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/flatMapDeep.js +17 -8
- package/node_modules/es-toolkit/dist/array/flatMapDeep.mjs +17 -4
- package/node_modules/es-toolkit/dist/array/flatten.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/flatten.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/flatten.js +29 -20
- package/node_modules/es-toolkit/dist/array/flatten.mjs +29 -16
- package/node_modules/es-toolkit/dist/array/flattenDeep.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/flattenDeep.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/flattenDeep.js +15 -8
- package/node_modules/es-toolkit/dist/array/flattenDeep.mjs +15 -4
- package/node_modules/es-toolkit/dist/array/forEachAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/forEachAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/forEachAsync.js +34 -11
- package/node_modules/es-toolkit/dist/array/forEachAsync.mjs +34 -7
- package/node_modules/es-toolkit/dist/array/forEachRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/forEachRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/forEachRight.js +28 -9
- package/node_modules/es-toolkit/dist/array/forEachRight.mjs +28 -5
- package/node_modules/es-toolkit/dist/array/groupBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/groupBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/groupBy.js +48 -15
- package/node_modules/es-toolkit/dist/array/groupBy.mjs +48 -11
- package/node_modules/es-toolkit/dist/array/head.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/head.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/head.js +18 -6
- package/node_modules/es-toolkit/dist/array/head.mjs +18 -2
- package/node_modules/es-toolkit/dist/array/index.d.mts +70 -66
- package/node_modules/es-toolkit/dist/array/index.d.ts +70 -66
- package/node_modules/es-toolkit/dist/array/index.js +139 -139
- package/node_modules/es-toolkit/dist/array/index.mjs +70 -66
- package/node_modules/es-toolkit/dist/array/initial.d.mts +10 -9
- package/node_modules/es-toolkit/dist/array/initial.d.ts +10 -9
- package/node_modules/es-toolkit/dist/array/initial.js +16 -6
- package/node_modules/es-toolkit/dist/array/initial.mjs +16 -2
- package/node_modules/es-toolkit/dist/array/intersection.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/intersection.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/intersection.js +22 -7
- package/node_modules/es-toolkit/dist/array/intersection.mjs +22 -3
- package/node_modules/es-toolkit/dist/array/intersectionBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionBy.js +46 -16
- package/node_modules/es-toolkit/dist/array/intersectionBy.mjs +46 -12
- package/node_modules/es-toolkit/dist/array/intersectionWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/intersectionWith.js +41 -10
- package/node_modules/es-toolkit/dist/array/intersectionWith.mjs +41 -6
- package/node_modules/es-toolkit/dist/array/isSubset.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/isSubset.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/isSubset.js +27 -8
- package/node_modules/es-toolkit/dist/array/isSubset.mjs +27 -4
- package/node_modules/es-toolkit/dist/array/isSubsetWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/isSubsetWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/isSubsetWith.js +34 -8
- package/node_modules/es-toolkit/dist/array/isSubsetWith.mjs +34 -4
- package/node_modules/es-toolkit/dist/array/keyBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/keyBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/keyBy.js +42 -12
- package/node_modules/es-toolkit/dist/array/keyBy.mjs +42 -8
- package/node_modules/es-toolkit/dist/array/last.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/last.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/last.js +25 -6
- package/node_modules/es-toolkit/dist/array/last.mjs +25 -2
- package/node_modules/es-toolkit/dist/array/limitAsync.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/limitAsync.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/limitAsync.js +43 -17
- package/node_modules/es-toolkit/dist/array/limitAsync.mjs +43 -13
- package/node_modules/es-toolkit/dist/array/mapAsync.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/mapAsync.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/mapAsync.js +33 -11
- package/node_modules/es-toolkit/dist/array/mapAsync.mjs +33 -7
- package/node_modules/es-toolkit/dist/array/maxBy.d.mts +11 -8
- package/node_modules/es-toolkit/dist/array/maxBy.d.ts +11 -8
- package/node_modules/es-toolkit/dist/array/maxBy.js +37 -19
- package/node_modules/es-toolkit/dist/array/maxBy.mjs +37 -15
- package/node_modules/es-toolkit/dist/array/minBy.d.mts +11 -8
- package/node_modules/es-toolkit/dist/array/minBy.d.ts +11 -8
- package/node_modules/es-toolkit/dist/array/minBy.js +37 -19
- package/node_modules/es-toolkit/dist/array/minBy.mjs +37 -15
- package/node_modules/es-toolkit/dist/array/orderBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/orderBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/orderBy.js +50 -22
- package/node_modules/es-toolkit/dist/array/orderBy.mjs +48 -18
- package/node_modules/es-toolkit/dist/array/partition.d.mts +9 -8
- package/node_modules/es-toolkit/dist/array/partition.d.ts +9 -8
- package/node_modules/es-toolkit/dist/array/partition.js +10 -17
- package/node_modules/es-toolkit/dist/array/partition.mjs +10 -13
- package/node_modules/es-toolkit/dist/array/pull.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/pull.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/pull.js +30 -19
- package/node_modules/es-toolkit/dist/array/pull.mjs +30 -15
- package/node_modules/es-toolkit/dist/array/pullAt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/pullAt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/pullAt.js +23 -13
- package/node_modules/es-toolkit/dist/array/pullAt.mjs +23 -9
- package/node_modules/es-toolkit/dist/array/reduceAsync.d.mts +10 -9
- package/node_modules/es-toolkit/dist/array/reduceAsync.d.ts +10 -9
- package/node_modules/es-toolkit/dist/array/reduceAsync.js +10 -15
- package/node_modules/es-toolkit/dist/array/reduceAsync.mjs +10 -11
- package/node_modules/es-toolkit/dist/array/remove.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/remove.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/remove.js +34 -21
- package/node_modules/es-toolkit/dist/array/remove.mjs +34 -17
- package/node_modules/es-toolkit/dist/array/sample.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/sample.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/sample.js +17 -7
- package/node_modules/es-toolkit/dist/array/sample.mjs +17 -3
- package/node_modules/es-toolkit/dist/array/sampleSize.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/sampleSize.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/sampleSize.js +31 -21
- package/node_modules/es-toolkit/dist/array/sampleSize.mjs +31 -17
- package/node_modules/es-toolkit/dist/array/shuffle.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/shuffle.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/shuffle.js +25 -11
- package/node_modules/es-toolkit/dist/array/shuffle.mjs +25 -7
- package/node_modules/es-toolkit/dist/array/sortBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/sortBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/sortBy.js +36 -8
- package/node_modules/es-toolkit/dist/array/sortBy.mjs +36 -4
- package/node_modules/es-toolkit/dist/array/tail.d.mts +11 -10
- package/node_modules/es-toolkit/dist/array/tail.d.ts +11 -10
- package/node_modules/es-toolkit/dist/array/tail.js +27 -6
- package/node_modules/es-toolkit/dist/array/tail.mjs +27 -2
- package/node_modules/es-toolkit/dist/array/take.d.mts +7 -12
- package/node_modules/es-toolkit/dist/array/take.d.ts +7 -12
- package/node_modules/es-toolkit/dist/array/take.js +26 -10
- package/node_modules/es-toolkit/dist/array/take.mjs +26 -6
- package/node_modules/es-toolkit/dist/array/takeRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/takeRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/takeRight.js +26 -13
- package/node_modules/es-toolkit/dist/array/takeRight.mjs +26 -9
- package/node_modules/es-toolkit/dist/array/takeRightWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/takeRightWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/takeRightWhile.js +26 -11
- package/node_modules/es-toolkit/dist/array/takeRightWhile.mjs +26 -7
- package/node_modules/es-toolkit/dist/array/takeWhile.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/takeWhile.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/takeWhile.js +32 -14
- package/node_modules/es-toolkit/dist/array/takeWhile.mjs +32 -10
- package/node_modules/es-toolkit/dist/array/toFilled.d.mts +15 -14
- package/node_modules/es-toolkit/dist/array/toFilled.d.ts +15 -14
- package/node_modules/es-toolkit/dist/array/toFilled.js +20 -13
- package/node_modules/es-toolkit/dist/array/toFilled.mjs +20 -9
- package/node_modules/es-toolkit/dist/array/union.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/union.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/union.js +21 -8
- package/node_modules/es-toolkit/dist/array/union.mjs +21 -4
- package/node_modules/es-toolkit/dist/array/unionBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/unionBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/unionBy.js +26 -8
- package/node_modules/es-toolkit/dist/array/unionBy.mjs +26 -4
- package/node_modules/es-toolkit/dist/array/unionWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/unionWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/unionWith.js +24 -8
- package/node_modules/es-toolkit/dist/array/unionWith.mjs +24 -4
- package/node_modules/es-toolkit/dist/array/uniq.d.mts +5 -4
- package/node_modules/es-toolkit/dist/array/uniq.d.ts +5 -4
- package/node_modules/es-toolkit/dist/array/uniq.js +18 -6
- package/node_modules/es-toolkit/dist/array/uniq.mjs +18 -2
- package/node_modules/es-toolkit/dist/array/uniqBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqBy.js +37 -14
- package/node_modules/es-toolkit/dist/array/uniqBy.mjs +37 -10
- package/node_modules/es-toolkit/dist/array/uniqWith.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqWith.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/uniqWith.js +23 -14
- package/node_modules/es-toolkit/dist/array/uniqWith.mjs +23 -10
- package/node_modules/es-toolkit/dist/array/unzip.d.mts +6 -7
- package/node_modules/es-toolkit/dist/array/unzip.d.ts +6 -7
- package/node_modules/es-toolkit/dist/array/unzip.js +23 -19
- package/node_modules/es-toolkit/dist/array/unzip.mjs +23 -15
- package/node_modules/es-toolkit/dist/array/unzipWith.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/unzipWith.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/unzipWith.js +24 -15
- package/node_modules/es-toolkit/dist/array/unzipWith.mjs +24 -11
- package/node_modules/es-toolkit/dist/array/windowed.d.mts +21 -18
- package/node_modules/es-toolkit/dist/array/windowed.d.ts +21 -18
- package/node_modules/es-toolkit/dist/array/windowed.js +38 -17
- package/node_modules/es-toolkit/dist/array/windowed.mjs +38 -13
- package/node_modules/es-toolkit/dist/array/without.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/without.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/without.js +24 -8
- package/node_modules/es-toolkit/dist/array/without.mjs +24 -4
- package/node_modules/es-toolkit/dist/array/xor.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/xor.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/xor.js +23 -10
- package/node_modules/es-toolkit/dist/array/xor.mjs +23 -6
- package/node_modules/es-toolkit/dist/array/xorBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/xorBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/xorBy.js +27 -12
- package/node_modules/es-toolkit/dist/array/xorBy.mjs +25 -8
- package/node_modules/es-toolkit/dist/array/xorWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/array/xorWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/array/xorWith.js +26 -12
- package/node_modules/es-toolkit/dist/array/xorWith.mjs +24 -8
- package/node_modules/es-toolkit/dist/array/zip.d.mts +19 -18
- package/node_modules/es-toolkit/dist/array/zip.d.ts +19 -18
- package/node_modules/es-toolkit/dist/array/zip.js +31 -21
- package/node_modules/es-toolkit/dist/array/zip.mjs +31 -17
- package/node_modules/es-toolkit/dist/array/zipObject.d.mts +6 -5
- package/node_modules/es-toolkit/dist/array/zipObject.d.ts +6 -5
- package/node_modules/es-toolkit/dist/array/zipObject.js +35 -10
- package/node_modules/es-toolkit/dist/array/zipObject.mjs +35 -6
- package/node_modules/es-toolkit/dist/array/zipWith.d.mts +21 -20
- package/node_modules/es-toolkit/dist/array/zipWith.d.ts +21 -20
- package/node_modules/es-toolkit/dist/array/zipWith.js +29 -14
- package/node_modules/es-toolkit/dist/array/zipWith.mjs +29 -10
- package/node_modules/es-toolkit/dist/browser.global.js +8 -1
- package/node_modules/es-toolkit/dist/compat/_internal/ArrayIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ArrayIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.mts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.ts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/EmptyObjectOf.d.mts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/EmptyObjectOf.d.ts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.mts +4 -0
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.ts +4 -0
- package/node_modules/es-toolkit/dist/compat/_internal/GetFieldType.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/GetFieldType.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsEqualCustomizer.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsEqualCustomizer.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsMatchWithCustomizer.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsMatchWithCustomizer.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.mts +6 -0
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.ts +6 -0
- package/node_modules/es-toolkit/dist/compat/_internal/IterateeShorthand.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/IterateeShorthand.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratee.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratee.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterateeCustom.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterateeCustom.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratorTypeGuard.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListIteratorTypeGuard.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.mts +5 -5
- package/node_modules/es-toolkit/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.ts +5 -5
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_ARRAY_LENGTH.js +3 -6
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_ARRAY_LENGTH.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_SAFE_INTEGER.js +2 -5
- package/node_modules/es-toolkit/dist/compat/_internal/MAX_SAFE_INTEGER.mjs +2 -1
- package/node_modules/es-toolkit/dist/compat/_internal/Many.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/Many.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoListIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoListIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoObjectIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MemoObjectIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.mts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.ts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.mts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.ts +4 -5
- package/node_modules/es-toolkit/dist/compat/_internal/PropertyPath.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/PropertyPath.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/RecursiveArray.d.mts +4 -4
- package/node_modules/es-toolkit/dist/compat/_internal/RecursiveArray.d.ts +4 -4
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.mts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.ts +7 -0
- package/node_modules/es-toolkit/dist/compat/_internal/StringIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/StringIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/TupleIterator.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/TupleIterator.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratee.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratee.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIterateeCustom.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIterateeCustom.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratorTypeGuard.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueIteratorTypeGuard.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIteratee.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIteratee.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/assignValue.js +6 -11
- package/node_modules/es-toolkit/dist/compat/_internal/assignValue.mjs +6 -7
- package/node_modules/es-toolkit/dist/compat/_internal/compareValues.js +17 -32
- package/node_modules/es-toolkit/dist/compat/_internal/compareValues.mjs +17 -28
- package/node_modules/es-toolkit/dist/compat/_internal/copyArray.js +15 -12
- package/node_modules/es-toolkit/dist/compat/_internal/copyArray.mjs +14 -9
- package/node_modules/es-toolkit/dist/compat/_internal/decimalAdjust.js +13 -20
- package/node_modules/es-toolkit/dist/compat/_internal/decimalAdjust.mjs +13 -16
- package/node_modules/es-toolkit/dist/compat/_internal/flattenArrayLike.js +10 -18
- package/node_modules/es-toolkit/dist/compat/_internal/flattenArrayLike.mjs +10 -14
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbols.js +3 -6
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbols.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbolsIn.js +9 -13
- package/node_modules/es-toolkit/dist/compat/_internal/getSymbolsIn.mjs +9 -9
- package/node_modules/es-toolkit/dist/compat/_internal/getTag.js +11 -9
- package/node_modules/es-toolkit/dist/compat/_internal/getTag.mjs +11 -5
- package/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.js +24 -14
- package/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.mjs +24 -10
- package/node_modules/es-toolkit/dist/compat/_internal/isIndex.js +7 -16
- package/node_modules/es-toolkit/dist/compat/_internal/isIndex.mjs +7 -12
- package/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.js +10 -18
- package/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.mjs +10 -14
- package/node_modules/es-toolkit/dist/compat/_internal/isKey.js +21 -15
- package/node_modules/es-toolkit/dist/compat/_internal/isKey.mjs +21 -11
- package/node_modules/es-toolkit/dist/compat/_internal/isPrototype.js +4 -8
- package/node_modules/es-toolkit/dist/compat/_internal/isPrototype.mjs +4 -4
- package/node_modules/es-toolkit/dist/compat/_internal/mapToEntries.js +7 -12
- package/node_modules/es-toolkit/dist/compat/_internal/mapToEntries.mjs +7 -8
- package/node_modules/es-toolkit/dist/compat/_internal/normalizeForCase.js +5 -11
- package/node_modules/es-toolkit/dist/compat/_internal/normalizeForCase.mjs +5 -7
- package/node_modules/es-toolkit/dist/compat/_internal/setToEntries.js +9 -12
- package/node_modules/es-toolkit/dist/compat/_internal/setToEntries.mjs +9 -8
- package/node_modules/es-toolkit/dist/compat/_internal/tags.js +28 -31
- package/node_modules/es-toolkit/dist/compat/_internal/tags.mjs +28 -27
- package/node_modules/es-toolkit/dist/compat/_internal/toArray.js +3 -6
- package/node_modules/es-toolkit/dist/compat/_internal/toArray.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/_internal/toKey.js +12 -12
- package/node_modules/es-toolkit/dist/compat/_internal/toKey.mjs +12 -8
- package/node_modules/es-toolkit/dist/compat/array/castArray.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/castArray.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/castArray.js +30 -9
- package/node_modules/es-toolkit/dist/compat/array/castArray.mjs +30 -5
- package/node_modules/es-toolkit/dist/compat/array/chunk.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/chunk.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/chunk.js +32 -14
- package/node_modules/es-toolkit/dist/compat/array/chunk.mjs +32 -10
- package/node_modules/es-toolkit/dist/compat/array/compact.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/compact.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/compact.js +17 -12
- package/node_modules/es-toolkit/dist/compat/array/compact.mjs +17 -8
- package/node_modules/es-toolkit/dist/compat/array/concat.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/concat.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/concat.js +31 -8
- package/node_modules/es-toolkit/dist/compat/array/concat.mjs +31 -4
- package/node_modules/es-toolkit/dist/compat/array/countBy.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/array/countBy.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/array/countBy.js +14 -20
- package/node_modules/es-toolkit/dist/compat/array/countBy.mjs +14 -16
- package/node_modules/es-toolkit/dist/compat/array/difference.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/difference.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/difference.js +37 -21
- package/node_modules/es-toolkit/dist/compat/array/difference.mjs +37 -17
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.d.mts +45 -44
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.d.ts +45 -44
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.js +22 -22
- package/node_modules/es-toolkit/dist/compat/array/differenceBy.mjs +22 -18
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.js +39 -20
- package/node_modules/es-toolkit/dist/compat/array/differenceWith.mjs +39 -16
- package/node_modules/es-toolkit/dist/compat/array/drop.d.mts +7 -7
- package/node_modules/es-toolkit/dist/compat/array/drop.d.ts +7 -7
- package/node_modules/es-toolkit/dist/compat/array/drop.js +10 -16
- package/node_modules/es-toolkit/dist/compat/array/drop.mjs +10 -12
- package/node_modules/es-toolkit/dist/compat/array/dropRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/dropRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/dropRight.js +26 -15
- package/node_modules/es-toolkit/dist/compat/array/dropRight.mjs +26 -11
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.js +41 -37
- package/node_modules/es-toolkit/dist/compat/array/dropRightWhile.mjs +41 -33
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.js +46 -38
- package/node_modules/es-toolkit/dist/compat/array/dropWhile.mjs +46 -34
- package/node_modules/es-toolkit/dist/compat/array/each.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/each.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/each.js +1 -0
- package/node_modules/es-toolkit/dist/compat/array/each.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.js +1 -0
- package/node_modules/es-toolkit/dist/compat/array/eachRight.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/array/every.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/every.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/every.js +55 -61
- package/node_modules/es-toolkit/dist/compat/array/every.mjs +55 -57
- package/node_modules/es-toolkit/dist/compat/array/fill.d.mts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/fill.d.ts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/fill.js +39 -24
- package/node_modules/es-toolkit/dist/compat/array/fill.mjs +39 -20
- package/node_modules/es-toolkit/dist/compat/array/filter.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/filter.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/filter.js +48 -36
- package/node_modules/es-toolkit/dist/compat/array/filter.mjs +47 -31
- package/node_modules/es-toolkit/dist/compat/array/find.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/find.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/find.js +33 -28
- package/node_modules/es-toolkit/dist/compat/array/find.mjs +32 -23
- package/node_modules/es-toolkit/dist/compat/array/findIndex.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/findIndex.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/findIndex.js +43 -42
- package/node_modules/es-toolkit/dist/compat/array/findIndex.mjs +42 -37
- package/node_modules/es-toolkit/dist/compat/array/findLast.d.mts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/findLast.d.ts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/findLast.js +37 -34
- package/node_modules/es-toolkit/dist/compat/array/findLast.mjs +36 -29
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.js +37 -42
- package/node_modules/es-toolkit/dist/compat/array/findLastIndex.mjs +36 -37
- package/node_modules/es-toolkit/dist/compat/array/first.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/first.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/array/first.js +1 -0
- package/node_modules/es-toolkit/dist/compat/array/first.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/array/flatMap.d.mts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/flatMap.d.ts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/flatMap.js +20 -14
- package/node_modules/es-toolkit/dist/compat/array/flatMap.mjs +19 -10
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.js +16 -8
- package/node_modules/es-toolkit/dist/compat/array/flatMapDeep.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.d.mts +24 -23
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.d.ts +24 -23
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.js +24 -17
- package/node_modules/es-toolkit/dist/compat/array/flatMapDepth.mjs +21 -12
- package/node_modules/es-toolkit/dist/compat/array/flatten.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flatten.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flatten.js +16 -33
- package/node_modules/es-toolkit/dist/compat/array/flatten.mjs +16 -29
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.js +15 -8
- package/node_modules/es-toolkit/dist/compat/array/flattenDeep.mjs +15 -4
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.js +21 -8
- package/node_modules/es-toolkit/dist/compat/array/flattenDepth.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/array/forEach.d.mts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEach.d.ts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEach.js +32 -23
- package/node_modules/es-toolkit/dist/compat/array/forEach.mjs +31 -18
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.d.mts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.d.ts +31 -30
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.js +32 -23
- package/node_modules/es-toolkit/dist/compat/array/forEachRight.mjs +31 -18
- package/node_modules/es-toolkit/dist/compat/array/groupBy.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/groupBy.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/groupBy.js +40 -16
- package/node_modules/es-toolkit/dist/compat/array/groupBy.mjs +38 -12
- package/node_modules/es-toolkit/dist/compat/array/head.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/head.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/head.js +22 -13
- package/node_modules/es-toolkit/dist/compat/array/head.mjs +22 -9
- package/node_modules/es-toolkit/dist/compat/array/includes.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/array/includes.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/array/includes.js +38 -41
- package/node_modules/es-toolkit/dist/compat/array/includes.mjs +35 -37
- package/node_modules/es-toolkit/dist/compat/array/indexOf.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/indexOf.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/indexOf.js +28 -23
- package/node_modules/es-toolkit/dist/compat/array/indexOf.mjs +28 -19
- package/node_modules/es-toolkit/dist/compat/array/initial.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/initial.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/initial.js +19 -12
- package/node_modules/es-toolkit/dist/compat/array/initial.mjs +19 -8
- package/node_modules/es-toolkit/dist/compat/array/intersection.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/intersection.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/intersection.js +31 -24
- package/node_modules/es-toolkit/dist/compat/array/intersection.mjs +31 -20
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.d.mts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.d.ts +23 -22
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.js +49 -37
- package/node_modules/es-toolkit/dist/compat/array/intersectionBy.mjs +49 -33
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.js +49 -41
- package/node_modules/es-toolkit/dist/compat/array/intersectionWith.mjs +49 -37
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.js +41 -38
- package/node_modules/es-toolkit/dist/compat/array/invokeMap.mjs +38 -34
- package/node_modules/es-toolkit/dist/compat/array/join.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/join.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/join.js +17 -11
- package/node_modules/es-toolkit/dist/compat/array/join.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/array/keyBy.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/keyBy.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/array/keyBy.js +41 -20
- package/node_modules/es-toolkit/dist/compat/array/keyBy.mjs +41 -16
- package/node_modules/es-toolkit/dist/compat/array/last.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/last.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/last.js +29 -13
- package/node_modules/es-toolkit/dist/compat/array/last.mjs +29 -9
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.js +11 -23
- package/node_modules/es-toolkit/dist/compat/array/lastIndexOf.mjs +11 -19
- package/node_modules/es-toolkit/dist/compat/array/map.d.mts +31 -32
- package/node_modules/es-toolkit/dist/compat/array/map.d.ts +31 -32
- package/node_modules/es-toolkit/dist/compat/array/map.js +16 -22
- package/node_modules/es-toolkit/dist/compat/array/map.mjs +16 -18
- package/node_modules/es-toolkit/dist/compat/array/nth.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/nth.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/nth.js +19 -16
- package/node_modules/es-toolkit/dist/compat/array/nth.mjs +19 -12
- package/node_modules/es-toolkit/dist/compat/array/orderBy.d.mts +25 -23
- package/node_modules/es-toolkit/dist/compat/array/orderBy.d.ts +25 -23
- package/node_modules/es-toolkit/dist/compat/array/orderBy.js +77 -79
- package/node_modules/es-toolkit/dist/compat/array/orderBy.mjs +77 -75
- package/node_modules/es-toolkit/dist/compat/array/partition.d.mts +14 -13
- package/node_modules/es-toolkit/dist/compat/array/partition.d.ts +14 -13
- package/node_modules/es-toolkit/dist/compat/array/partition.js +40 -27
- package/node_modules/es-toolkit/dist/compat/array/partition.mjs +39 -22
- package/node_modules/es-toolkit/dist/compat/array/pull.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/pull.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/pull.js +20 -8
- package/node_modules/es-toolkit/dist/compat/array/pull.mjs +20 -4
- package/node_modules/es-toolkit/dist/compat/array/pullAll.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/pullAll.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/pullAll.js +20 -8
- package/node_modules/es-toolkit/dist/compat/array/pullAll.mjs +20 -4
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.d.mts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.d.ts +22 -21
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.js +40 -23
- package/node_modules/es-toolkit/dist/compat/array/pullAllBy.mjs +40 -19
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.d.mts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.d.ts +21 -20
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.js +41 -34
- package/node_modules/es-toolkit/dist/compat/array/pullAllWith.mjs +41 -30
- package/node_modules/es-toolkit/dist/compat/array/pullAt.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/array/pullAt.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/array/pullAt.js +41 -35
- package/node_modules/es-toolkit/dist/compat/array/pullAt.mjs +40 -31
- package/node_modules/es-toolkit/dist/compat/array/reduce.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduce.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduce.js +52 -35
- package/node_modules/es-toolkit/dist/compat/array/reduce.mjs +51 -30
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.js +52 -41
- package/node_modules/es-toolkit/dist/compat/array/reduceRight.mjs +51 -36
- package/node_modules/es-toolkit/dist/compat/array/reject.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/reject.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/reject.js +30 -12
- package/node_modules/es-toolkit/dist/compat/array/reject.mjs +29 -7
- package/node_modules/es-toolkit/dist/compat/array/remove.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/remove.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/remove.js +34 -11
- package/node_modules/es-toolkit/dist/compat/array/remove.mjs +33 -6
- package/node_modules/es-toolkit/dist/compat/array/reverse.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/reverse.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/reverse.js +25 -9
- package/node_modules/es-toolkit/dist/compat/array/reverse.mjs +25 -5
- package/node_modules/es-toolkit/dist/compat/array/sample.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sample.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sample.js +18 -16
- package/node_modules/es-toolkit/dist/compat/array/sample.mjs +18 -12
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.js +28 -19
- package/node_modules/es-toolkit/dist/compat/array/sampleSize.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/array/shuffle.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/shuffle.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/shuffle.js +22 -25
- package/node_modules/es-toolkit/dist/compat/array/shuffle.mjs +22 -21
- package/node_modules/es-toolkit/dist/compat/array/size.d.mts +9 -4
- package/node_modules/es-toolkit/dist/compat/array/size.d.ts +9 -4
- package/node_modules/es-toolkit/dist/compat/array/size.js +8 -14
- package/node_modules/es-toolkit/dist/compat/array/size.mjs +8 -10
- package/node_modules/es-toolkit/dist/compat/array/slice.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/slice.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/slice.js +37 -40
- package/node_modules/es-toolkit/dist/compat/array/slice.mjs +37 -36
- package/node_modules/es-toolkit/dist/compat/array/some.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/some.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/array/some.js +87 -83
- package/node_modules/es-toolkit/dist/compat/array/some.mjs +87 -79
- package/node_modules/es-toolkit/dist/compat/array/sortBy.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/sortBy.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/sortBy.js +9 -17
- package/node_modules/es-toolkit/dist/compat/array/sortBy.mjs +9 -13
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.js +33 -32
- package/node_modules/es-toolkit/dist/compat/array/sortedIndex.mjs +33 -28
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.js +52 -61
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.mjs +51 -56
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.js +40 -16
- package/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.mjs +40 -12
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.js +31 -32
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.mjs +31 -28
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.js +19 -8
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.mjs +19 -4
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.js +41 -16
- package/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.mjs +41 -12
- package/node_modules/es-toolkit/dist/compat/array/tail.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/tail.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/tail.js +31 -13
- package/node_modules/es-toolkit/dist/compat/array/tail.mjs +31 -9
- package/node_modules/es-toolkit/dist/compat/array/take.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/take.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/take.js +32 -15
- package/node_modules/es-toolkit/dist/compat/array/take.mjs +32 -11
- package/node_modules/es-toolkit/dist/compat/array/takeRight.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/takeRight.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/takeRight.js +31 -15
- package/node_modules/es-toolkit/dist/compat/array/takeRight.mjs +31 -11
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.js +56 -17
- package/node_modules/es-toolkit/dist/compat/array/takeRightWhile.mjs +56 -13
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.js +56 -17
- package/node_modules/es-toolkit/dist/compat/array/takeWhile.mjs +56 -13
- package/node_modules/es-toolkit/dist/compat/array/union.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/union.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/union.js +35 -12
- package/node_modules/es-toolkit/dist/compat/array/union.mjs +33 -8
- package/node_modules/es-toolkit/dist/compat/array/unionBy.d.mts +29 -28
- package/node_modules/es-toolkit/dist/compat/array/unionBy.d.ts +29 -28
- package/node_modules/es-toolkit/dist/compat/array/unionBy.js +34 -19
- package/node_modules/es-toolkit/dist/compat/array/unionBy.mjs +34 -15
- package/node_modules/es-toolkit/dist/compat/array/unionWith.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/unionWith.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/unionWith.js +38 -17
- package/node_modules/es-toolkit/dist/compat/array/unionWith.mjs +38 -13
- package/node_modules/es-toolkit/dist/compat/array/uniq.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/uniq.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/uniq.js +21 -12
- package/node_modules/es-toolkit/dist/compat/array/uniq.mjs +21 -8
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.js +10 -16
- package/node_modules/es-toolkit/dist/compat/array/uniqBy.mjs +9 -11
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.js +31 -13
- package/node_modules/es-toolkit/dist/compat/array/uniqWith.mjs +31 -9
- package/node_modules/es-toolkit/dist/compat/array/unzip.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/unzip.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/unzip.js +22 -15
- package/node_modules/es-toolkit/dist/compat/array/unzip.mjs +22 -11
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.js +30 -22
- package/node_modules/es-toolkit/dist/compat/array/unzipWith.mjs +30 -18
- package/node_modules/es-toolkit/dist/compat/array/without.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/without.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/array/without.js +26 -12
- package/node_modules/es-toolkit/dist/compat/array/without.mjs +26 -8
- package/node_modules/es-toolkit/dist/compat/array/xor.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/xor.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/array/xor.js +35 -31
- package/node_modules/es-toolkit/dist/compat/array/xor.mjs +35 -27
- package/node_modules/es-toolkit/dist/compat/array/xorBy.d.mts +16 -15
- package/node_modules/es-toolkit/dist/compat/array/xorBy.d.ts +16 -15
- package/node_modules/es-toolkit/dist/compat/array/xorBy.js +37 -24
- package/node_modules/es-toolkit/dist/compat/array/xorBy.mjs +35 -20
- package/node_modules/es-toolkit/dist/compat/array/xorWith.d.mts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/xorWith.d.ts +15 -14
- package/node_modules/es-toolkit/dist/compat/array/xorWith.js +36 -22
- package/node_modules/es-toolkit/dist/compat/array/xorWith.mjs +34 -18
- package/node_modules/es-toolkit/dist/compat/array/zip.d.mts +43 -42
- package/node_modules/es-toolkit/dist/compat/array/zip.d.ts +43 -42
- package/node_modules/es-toolkit/dist/compat/array/zip.js +27 -12
- package/node_modules/es-toolkit/dist/compat/array/zip.mjs +27 -8
- package/node_modules/es-toolkit/dist/compat/array/zipObject.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/zipObject.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/array/zipObject.js +36 -12
- package/node_modules/es-toolkit/dist/compat/array/zipObject.mjs +36 -8
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.js +47 -24
- package/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.mjs +47 -20
- package/node_modules/es-toolkit/dist/compat/array/zipWith.d.mts +30 -29
- package/node_modules/es-toolkit/dist/compat/array/zipWith.d.ts +30 -29
- package/node_modules/es-toolkit/dist/compat/array/zipWith.js +32 -21
- package/node_modules/es-toolkit/dist/compat/array/zipWith.mjs +32 -17
- package/node_modules/es-toolkit/dist/compat/compat.d.mts +298 -291
- package/node_modules/es-toolkit/dist/compat/compat.d.ts +298 -291
- package/node_modules/es-toolkit/dist/compat/compat.js +606 -595
- package/node_modules/es-toolkit/dist/compat/compat.mjs +601 -291
- package/node_modules/es-toolkit/dist/compat/function/after.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/after.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/after.js +29 -16
- package/node_modules/es-toolkit/dist/compat/function/after.mjs +29 -12
- package/node_modules/es-toolkit/dist/compat/function/ary.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/ary.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/ary.js +25 -14
- package/node_modules/es-toolkit/dist/compat/function/ary.mjs +25 -10
- package/node_modules/es-toolkit/dist/compat/function/attempt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/attempt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/attempt.js +37 -11
- package/node_modules/es-toolkit/dist/compat/function/attempt.mjs +37 -7
- package/node_modules/es-toolkit/dist/compat/function/before.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/before.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/before.js +34 -21
- package/node_modules/es-toolkit/dist/compat/function/before.mjs +34 -17
- package/node_modules/es-toolkit/dist/compat/function/bind.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bind.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bind.js +41 -28
- package/node_modules/es-toolkit/dist/compat/function/bind.mjs +41 -24
- package/node_modules/es-toolkit/dist/compat/function/bindKey.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bindKey.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/function/bindKey.js +54 -28
- package/node_modules/es-toolkit/dist/compat/function/bindKey.mjs +54 -24
- package/node_modules/es-toolkit/dist/compat/function/curry.d.mts +84 -83
- package/node_modules/es-toolkit/dist/compat/function/curry.d.ts +84 -83
- package/node_modules/es-toolkit/dist/compat/function/curry.js +73 -53
- package/node_modules/es-toolkit/dist/compat/function/curry.mjs +73 -49
- package/node_modules/es-toolkit/dist/compat/function/curryRight.d.mts +66 -65
- package/node_modules/es-toolkit/dist/compat/function/curryRight.d.ts +66 -65
- package/node_modules/es-toolkit/dist/compat/function/curryRight.js +78 -60
- package/node_modules/es-toolkit/dist/compat/function/curryRight.mjs +78 -56
- package/node_modules/es-toolkit/dist/compat/function/debounce.d.mts +57 -56
- package/node_modules/es-toolkit/dist/compat/function/debounce.d.ts +57 -56
- package/node_modules/es-toolkit/dist/compat/function/debounce.js +35 -47
- package/node_modules/es-toolkit/dist/compat/function/debounce.mjs +35 -43
- package/node_modules/es-toolkit/dist/compat/function/defer.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/defer.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/defer.js +17 -9
- package/node_modules/es-toolkit/dist/compat/function/defer.mjs +17 -5
- package/node_modules/es-toolkit/dist/compat/function/delay.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/delay.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/delay.js +31 -11
- package/node_modules/es-toolkit/dist/compat/function/delay.mjs +31 -7
- package/node_modules/es-toolkit/dist/compat/function/flip.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/flip.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/flip.js +21 -8
- package/node_modules/es-toolkit/dist/compat/function/flip.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/function/flow.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flow.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flow.js +23 -13
- package/node_modules/es-toolkit/dist/compat/function/flow.mjs +23 -9
- package/node_modules/es-toolkit/dist/compat/function/flowRight.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flowRight.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/function/flowRight.js +25 -13
- package/node_modules/es-toolkit/dist/compat/function/flowRight.mjs +25 -9
- package/node_modules/es-toolkit/dist/compat/function/identity.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/identity.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/identity.js +3 -6
- package/node_modules/es-toolkit/dist/compat/function/identity.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/function/memoize.d.mts +80 -79
- package/node_modules/es-toolkit/dist/compat/function/memoize.d.ts +80 -79
- package/node_modules/es-toolkit/dist/compat/function/memoize.js +24 -21
- package/node_modules/es-toolkit/dist/compat/function/memoize.mjs +24 -17
- package/node_modules/es-toolkit/dist/compat/function/negate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/negate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/negate.js +19 -11
- package/node_modules/es-toolkit/dist/compat/function/negate.mjs +19 -7
- package/node_modules/es-toolkit/dist/compat/function/noop.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/function/noop.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/function/noop.js +12 -6
- package/node_modules/es-toolkit/dist/compat/function/noop.mjs +12 -2
- package/node_modules/es-toolkit/dist/compat/function/nthArg.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/nthArg.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/nthArg.js +25 -10
- package/node_modules/es-toolkit/dist/compat/function/nthArg.mjs +25 -6
- package/node_modules/es-toolkit/dist/compat/function/once.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/function/once.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/function/once.js +4 -8
- package/node_modules/es-toolkit/dist/compat/function/once.mjs +4 -4
- package/node_modules/es-toolkit/dist/compat/function/overArgs.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/overArgs.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/overArgs.js +57 -21
- package/node_modules/es-toolkit/dist/compat/function/overArgs.mjs +57 -17
- package/node_modules/es-toolkit/dist/compat/function/partial.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/partial.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/partial.js +31 -9
- package/node_modules/es-toolkit/dist/compat/function/partial.mjs +31 -5
- package/node_modules/es-toolkit/dist/compat/function/partialRight.d.mts +143 -142
- package/node_modules/es-toolkit/dist/compat/function/partialRight.d.ts +143 -142
- package/node_modules/es-toolkit/dist/compat/function/partialRight.js +31 -9
- package/node_modules/es-toolkit/dist/compat/function/partialRight.mjs +31 -5
- package/node_modules/es-toolkit/dist/compat/function/rearg.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/rearg.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/function/rearg.js +23 -15
- package/node_modules/es-toolkit/dist/compat/function/rearg.mjs +23 -11
- package/node_modules/es-toolkit/dist/compat/function/rest.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/rest.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/rest.js +35 -12
- package/node_modules/es-toolkit/dist/compat/function/rest.mjs +35 -8
- package/node_modules/es-toolkit/dist/compat/function/spread.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/spread.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/spread.js +54 -17
- package/node_modules/es-toolkit/dist/compat/function/spread.mjs +54 -13
- package/node_modules/es-toolkit/dist/compat/function/throttle.d.mts +29 -28
- package/node_modules/es-toolkit/dist/compat/function/throttle.d.ts +29 -28
- package/node_modules/es-toolkit/dist/compat/function/throttle.js +39 -13
- package/node_modules/es-toolkit/dist/compat/function/throttle.mjs +39 -9
- package/node_modules/es-toolkit/dist/compat/function/unary.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/unary.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/function/unary.js +18 -8
- package/node_modules/es-toolkit/dist/compat/function/unary.mjs +18 -4
- package/node_modules/es-toolkit/dist/compat/function/wrap.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/wrap.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/function/wrap.js +31 -12
- package/node_modules/es-toolkit/dist/compat/function/wrap.mjs +31 -8
- package/node_modules/es-toolkit/dist/compat/index.d.mts +293 -292
- package/node_modules/es-toolkit/dist/compat/index.d.ts +293 -292
- package/node_modules/es-toolkit/dist/compat/index.js +595 -597
- package/node_modules/es-toolkit/dist/compat/index.mjs +294 -292
- package/node_modules/es-toolkit/dist/compat/math/add.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/add.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/add.js +29 -23
- package/node_modules/es-toolkit/dist/compat/math/add.mjs +29 -19
- package/node_modules/es-toolkit/dist/compat/math/ceil.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/ceil.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/ceil.js +16 -8
- package/node_modules/es-toolkit/dist/compat/math/ceil.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/math/clamp.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/math/clamp.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/math/clamp.js +33 -20
- package/node_modules/es-toolkit/dist/compat/math/clamp.mjs +33 -16
- package/node_modules/es-toolkit/dist/compat/math/divide.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/divide.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/divide.js +29 -23
- package/node_modules/es-toolkit/dist/compat/math/divide.mjs +29 -19
- package/node_modules/es-toolkit/dist/compat/math/floor.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/floor.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/floor.js +16 -8
- package/node_modules/es-toolkit/dist/compat/math/floor.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/math/inRange.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/inRange.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/inRange.js +25 -29
- package/node_modules/es-toolkit/dist/compat/math/inRange.mjs +25 -25
- package/node_modules/es-toolkit/dist/compat/math/max.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/max.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/max.js +17 -19
- package/node_modules/es-toolkit/dist/compat/math/max.mjs +17 -15
- package/node_modules/es-toolkit/dist/compat/math/maxBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/maxBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/maxBy.js +35 -13
- package/node_modules/es-toolkit/dist/compat/math/maxBy.mjs +35 -9
- package/node_modules/es-toolkit/dist/compat/math/mean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/mean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/mean.js +18 -9
- package/node_modules/es-toolkit/dist/compat/math/mean.mjs +18 -5
- package/node_modules/es-toolkit/dist/compat/math/meanBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/meanBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/meanBy.js +29 -13
- package/node_modules/es-toolkit/dist/compat/math/meanBy.mjs +29 -9
- package/node_modules/es-toolkit/dist/compat/math/min.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/min.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/min.js +17 -19
- package/node_modules/es-toolkit/dist/compat/math/min.mjs +17 -15
- package/node_modules/es-toolkit/dist/compat/math/minBy.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/minBy.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/minBy.js +35 -13
- package/node_modules/es-toolkit/dist/compat/math/minBy.mjs +35 -9
- package/node_modules/es-toolkit/dist/compat/math/multiply.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/multiply.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/multiply.js +29 -23
- package/node_modules/es-toolkit/dist/compat/math/multiply.mjs +29 -19
- package/node_modules/es-toolkit/dist/compat/math/parseInt.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/parseInt.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/math/parseInt.js +22 -9
- package/node_modules/es-toolkit/dist/compat/math/parseInt.mjs +22 -5
- package/node_modules/es-toolkit/dist/compat/math/random.d.mts +16 -15
- package/node_modules/es-toolkit/dist/compat/math/random.d.ts +16 -15
- package/node_modules/es-toolkit/dist/compat/math/random.js +55 -71
- package/node_modules/es-toolkit/dist/compat/math/random.mjs +55 -67
- package/node_modules/es-toolkit/dist/compat/math/range.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/range.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/range.js +34 -27
- package/node_modules/es-toolkit/dist/compat/math/range.mjs +34 -23
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.js +35 -27
- package/node_modules/es-toolkit/dist/compat/math/rangeRight.mjs +35 -23
- package/node_modules/es-toolkit/dist/compat/math/round.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/round.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/round.js +16 -8
- package/node_modules/es-toolkit/dist/compat/math/round.mjs +16 -4
- package/node_modules/es-toolkit/dist/compat/math/subtract.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/subtract.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/subtract.js +28 -23
- package/node_modules/es-toolkit/dist/compat/math/subtract.mjs +28 -19
- package/node_modules/es-toolkit/dist/compat/math/sum.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/sum.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/math/sum.js +20 -8
- package/node_modules/es-toolkit/dist/compat/math/sum.mjs +20 -4
- package/node_modules/es-toolkit/dist/compat/math/sumBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/sumBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/math/sumBy.js +30 -26
- package/node_modules/es-toolkit/dist/compat/math/sumBy.mjs +30 -22
- package/node_modules/es-toolkit/dist/compat/object/assign.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assign.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assign.js +28 -19
- package/node_modules/es-toolkit/dist/compat/object/assign.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/object/assignIn.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assignIn.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/assignIn.js +28 -19
- package/node_modules/es-toolkit/dist/compat/object/assignIn.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.d.mts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.d.ts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.js +43 -29
- package/node_modules/es-toolkit/dist/compat/object/assignInWith.mjs +43 -25
- package/node_modules/es-toolkit/dist/compat/object/assignWith.d.mts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignWith.d.ts +30 -29
- package/node_modules/es-toolkit/dist/compat/object/assignWith.js +43 -29
- package/node_modules/es-toolkit/dist/compat/object/assignWith.mjs +43 -25
- package/node_modules/es-toolkit/dist/compat/object/at.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/at.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/at.js +34 -28
- package/node_modules/es-toolkit/dist/compat/object/at.mjs +34 -24
- package/node_modules/es-toolkit/dist/compat/object/clone.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/clone.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/clone.js +143 -151
- package/node_modules/es-toolkit/dist/compat/object/clone.mjs +143 -147
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.js +50 -8
- package/node_modules/es-toolkit/dist/compat/object/cloneDeep.mjs +50 -4
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.js +68 -43
- package/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.mjs +68 -39
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.js +52 -15
- package/node_modules/es-toolkit/dist/compat/object/cloneWith.mjs +52 -11
- package/node_modules/es-toolkit/dist/compat/object/create.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/create.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/create.js +28 -19
- package/node_modules/es-toolkit/dist/compat/object/create.mjs +28 -15
- package/node_modules/es-toolkit/dist/compat/object/defaults.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/defaults.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/defaults.js +44 -32
- package/node_modules/es-toolkit/dist/compat/object/defaults.mjs +44 -28
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.js +59 -55
- package/node_modules/es-toolkit/dist/compat/object/defaultsDeep.mjs +59 -51
- package/node_modules/es-toolkit/dist/compat/object/extend.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extend.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extend.js +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extend.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.js +1 -0
- package/node_modules/es-toolkit/dist/compat/object/extendWith.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/object/findKey.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findKey.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findKey.js +21 -15
- package/node_modules/es-toolkit/dist/compat/object/findKey.mjs +20 -11
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.js +20 -15
- package/node_modules/es-toolkit/dist/compat/object/findLastKey.mjs +20 -11
- package/node_modules/es-toolkit/dist/compat/object/forIn.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forIn.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forIn.js +34 -18
- package/node_modules/es-toolkit/dist/compat/object/forIn.mjs +33 -13
- package/node_modules/es-toolkit/dist/compat/object/forInRight.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forInRight.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/forInRight.js +39 -23
- package/node_modules/es-toolkit/dist/compat/object/forInRight.mjs +38 -18
- package/node_modules/es-toolkit/dist/compat/object/forOwn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwn.js +38 -21
- package/node_modules/es-toolkit/dist/compat/object/forOwn.mjs +37 -16
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.js +38 -21
- package/node_modules/es-toolkit/dist/compat/object/forOwnRight.mjs +37 -16
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.js +24 -16
- package/node_modules/es-toolkit/dist/compat/object/fromPairs.mjs +24 -12
- package/node_modules/es-toolkit/dist/compat/object/functions.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functions.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functions.js +26 -11
- package/node_modules/es-toolkit/dist/compat/object/functions.mjs +26 -7
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.js +24 -17
- package/node_modules/es-toolkit/dist/compat/object/functionsIn.mjs +24 -13
- package/node_modules/es-toolkit/dist/compat/object/get.d.mts +73 -72
- package/node_modules/es-toolkit/dist/compat/object/get.d.ts +73 -72
- package/node_modules/es-toolkit/dist/compat/object/get.js +60 -77
- package/node_modules/es-toolkit/dist/compat/object/get.mjs +60 -73
- package/node_modules/es-toolkit/dist/compat/object/has.d.mts +12 -13
- package/node_modules/es-toolkit/dist/compat/object/has.d.ts +12 -13
- package/node_modules/es-toolkit/dist/compat/object/has.js +49 -35
- package/node_modules/es-toolkit/dist/compat/object/has.mjs +49 -31
- package/node_modules/es-toolkit/dist/compat/object/hasIn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/hasIn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/hasIn.js +59 -38
- package/node_modules/es-toolkit/dist/compat/object/hasIn.mjs +59 -34
- package/node_modules/es-toolkit/dist/compat/object/invert.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/invert.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/invert.js +22 -8
- package/node_modules/es-toolkit/dist/compat/object/invert.mjs +22 -4
- package/node_modules/es-toolkit/dist/compat/object/invertBy.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/object/invertBy.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/object/invertBy.js +42 -30
- package/node_modules/es-toolkit/dist/compat/object/invertBy.mjs +42 -26
- package/node_modules/es-toolkit/dist/compat/object/keys.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keys.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keys.js +44 -35
- package/node_modules/es-toolkit/dist/compat/object/keys.mjs +44 -31
- package/node_modules/es-toolkit/dist/compat/object/keysIn.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keysIn.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/object/keysIn.js +57 -52
- package/node_modules/es-toolkit/dist/compat/object/keysIn.mjs +57 -48
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.js +26 -14
- package/node_modules/es-toolkit/dist/compat/object/mapKeys.mjs +25 -9
- package/node_modules/es-toolkit/dist/compat/object/mapValues.d.mts +9 -14
- package/node_modules/es-toolkit/dist/compat/object/mapValues.d.ts +9 -14
- package/node_modules/es-toolkit/dist/compat/object/mapValues.js +27 -14
- package/node_modules/es-toolkit/dist/compat/object/mapValues.mjs +26 -9
- package/node_modules/es-toolkit/dist/compat/object/merge.d.mts +24 -23
- package/node_modules/es-toolkit/dist/compat/object/merge.d.ts +24 -23
- package/node_modules/es-toolkit/dist/compat/object/merge.js +42 -9
- package/node_modules/es-toolkit/dist/compat/object/merge.mjs +42 -5
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.d.mts +28 -27
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.d.ts +28 -27
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.js +106 -105
- package/node_modules/es-toolkit/dist/compat/object/mergeWith.mjs +106 -101
- package/node_modules/es-toolkit/dist/compat/object/omit.d.mts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omit.d.ts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omit.js +69 -64
- package/node_modules/es-toolkit/dist/compat/object/omit.mjs +69 -60
- package/node_modules/es-toolkit/dist/compat/object/omitBy.d.mts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omitBy.d.ts +13 -12
- package/node_modules/es-toolkit/dist/compat/object/omitBy.js +36 -29
- package/node_modules/es-toolkit/dist/compat/object/omitBy.mjs +36 -25
- package/node_modules/es-toolkit/dist/compat/object/pick.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/pick.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/object/pick.js +58 -51
- package/node_modules/es-toolkit/dist/compat/object/pick.mjs +58 -47
- package/node_modules/es-toolkit/dist/compat/object/pickBy.d.mts +20 -19
- package/node_modules/es-toolkit/dist/compat/object/pickBy.d.ts +20 -19
- package/node_modules/es-toolkit/dist/compat/object/pickBy.js +38 -27
- package/node_modules/es-toolkit/dist/compat/object/pickBy.mjs +38 -23
- package/node_modules/es-toolkit/dist/compat/object/property.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/property.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/property.js +24 -10
- package/node_modules/es-toolkit/dist/compat/object/property.mjs +24 -6
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.js +26 -10
- package/node_modules/es-toolkit/dist/compat/object/propertyOf.mjs +26 -6
- package/node_modules/es-toolkit/dist/compat/object/result.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/result.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/result.js +47 -25
- package/node_modules/es-toolkit/dist/compat/object/result.mjs +47 -21
- package/node_modules/es-toolkit/dist/compat/object/set.d.mts +12 -11
- package/node_modules/es-toolkit/dist/compat/object/set.d.ts +12 -11
- package/node_modules/es-toolkit/dist/compat/object/set.js +31 -8
- package/node_modules/es-toolkit/dist/compat/object/set.mjs +31 -4
- package/node_modules/es-toolkit/dist/compat/object/setWith.d.mts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/setWith.d.ts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/setWith.js +30 -15
- package/node_modules/es-toolkit/dist/compat/object/setWith.mjs +30 -11
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.d.mts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.d.ts +26 -25
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.js +28 -10
- package/node_modules/es-toolkit/dist/compat/object/toDefaulted.mjs +27 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairs.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairs.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairs.js +34 -26
- package/node_modules/es-toolkit/dist/compat/object/toPairs.mjs +34 -22
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.js +32 -26
- package/node_modules/es-toolkit/dist/compat/object/toPairsIn.mjs +32 -22
- package/node_modules/es-toolkit/dist/compat/object/transform.d.mts +19 -18
- package/node_modules/es-toolkit/dist/compat/object/transform.d.ts +19 -18
- package/node_modules/es-toolkit/dist/compat/object/transform.js +42 -32
- package/node_modules/es-toolkit/dist/compat/object/transform.mjs +41 -27
- package/node_modules/es-toolkit/dist/compat/object/unset.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/unset.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/object/unset.js +61 -77
- package/node_modules/es-toolkit/dist/compat/object/unset.mjs +61 -73
- package/node_modules/es-toolkit/dist/compat/object/update.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/update.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/object/update.js +13 -8
- package/node_modules/es-toolkit/dist/compat/object/update.mjs +13 -4
- package/node_modules/es-toolkit/dist/compat/object/updateWith.d.mts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/updateWith.d.ts +14 -13
- package/node_modules/es-toolkit/dist/compat/object/updateWith.js +48 -54
- package/node_modules/es-toolkit/dist/compat/object/updateWith.mjs +48 -50
- package/node_modules/es-toolkit/dist/compat/object/values.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/values.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/object/values.js +13 -9
- package/node_modules/es-toolkit/dist/compat/object/values.mjs +13 -5
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.js +22 -14
- package/node_modules/es-toolkit/dist/compat/object/valuesIn.mjs +22 -10
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.js +27 -12
- package/node_modules/es-toolkit/dist/compat/predicate/conforms.mjs +27 -8
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.js +40 -24
- package/node_modules/es-toolkit/dist/compat/predicate/conformsTo.mjs +40 -20
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isArguments.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.js +23 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isArray.mjs +23 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.js +21 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.js +18 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.mjs +18 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.js +17 -9
- package/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.mjs +17 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.js +25 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isBoolean.mjs +25 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.js +22 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isBuffer.mjs +22 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.js +17 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isDate.mjs +17 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.js +15 -9
- package/node_modules/es-toolkit/dist/compat/predicate/isElement.mjs +15 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.js +45 -35
- package/node_modules/es-toolkit/dist/compat/predicate/isEmpty.mjs +45 -31
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.js +46 -23
- package/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.mjs +46 -19
- package/node_modules/es-toolkit/dist/compat/predicate/isError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isError.js +17 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isError.mjs +17 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.js +27 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isFinite.mjs +27 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.js +16 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isFunction.mjs +16 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.js +17 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isInteger.mjs +17 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.js +24 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isLength.mjs +24 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.js +21 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isMap.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.js +32 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isMatch.mjs +32 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.d.mts +9 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.d.ts +9 -7
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.js +144 -142
- package/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.mjs +145 -138
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.js +16 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNaN.mjs +16 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.js +22 -17
- package/node_modules/es-toolkit/dist/compat/predicate/isNative.mjs +22 -13
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.js +22 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNil.mjs +22 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.js +14 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNull.mjs +14 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.js +23 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isNumber.mjs +23 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.js +26 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isObject.mjs +26 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.js +26 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.mjs +26 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.js +36 -30
- package/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.mjs +36 -26
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.js +17 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isRegExp.mjs +17 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.js +21 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.mjs +21 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.js +21 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isSet.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isString.js +20 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isString.mjs +20 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.js +17 -6
- package/node_modules/es-toolkit/dist/compat/predicate/isSymbol.mjs +17 -2
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.js +19 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.mjs +19 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isUndefined.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.js +24 -8
- package/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.mjs +24 -4
- package/node_modules/es-toolkit/dist/compat/predicate/matches.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/matches.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/predicate/matches.js +34 -12
- package/node_modules/es-toolkit/dist/compat/predicate/matches.mjs +34 -8
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.js +47 -34
- package/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.mjs +47 -30
- package/node_modules/es-toolkit/dist/compat/string/camelCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/camelCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/camelCase.js +21 -10
- package/node_modules/es-toolkit/dist/compat/string/camelCase.mjs +21 -6
- package/node_modules/es-toolkit/dist/compat/string/capitalize.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/capitalize.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/capitalize.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/capitalize.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/deburr.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/deburr.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/deburr.js +24 -9
- package/node_modules/es-toolkit/dist/compat/string/deburr.mjs +24 -5
- package/node_modules/es-toolkit/dist/compat/string/endsWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/endsWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/endsWith.js +22 -12
- package/node_modules/es-toolkit/dist/compat/string/endsWith.mjs +22 -8
- package/node_modules/es-toolkit/dist/compat/string/escape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escape.js +18 -9
- package/node_modules/es-toolkit/dist/compat/string/escape.mjs +18 -5
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/escapeRegExp.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/kebabCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/lowerCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/lowerFirst.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/pad.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/pad.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/pad.js +21 -9
- package/node_modules/es-toolkit/dist/compat/string/pad.mjs +21 -5
- package/node_modules/es-toolkit/dist/compat/string/padEnd.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padEnd.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padEnd.js +22 -9
- package/node_modules/es-toolkit/dist/compat/string/padEnd.mjs +22 -5
- package/node_modules/es-toolkit/dist/compat/string/padStart.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padStart.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/padStart.js +22 -9
- package/node_modules/es-toolkit/dist/compat/string/padStart.mjs +22 -5
- package/node_modules/es-toolkit/dist/compat/string/repeat.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/string/repeat.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/string/repeat.js +24 -20
- package/node_modules/es-toolkit/dist/compat/string/repeat.mjs +24 -16
- package/node_modules/es-toolkit/dist/compat/string/replace.d.mts +3 -2
- package/node_modules/es-toolkit/dist/compat/string/replace.d.ts +3 -2
- package/node_modules/es-toolkit/dist/compat/string/replace.js +19 -11
- package/node_modules/es-toolkit/dist/compat/string/replace.mjs +19 -7
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/snakeCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/split.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/split.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/split.js +4 -8
- package/node_modules/es-toolkit/dist/compat/string/split.mjs +4 -4
- package/node_modules/es-toolkit/dist/compat/string/startCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/startCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/startCase.js +27 -24
- package/node_modules/es-toolkit/dist/compat/string/startCase.mjs +27 -20
- package/node_modules/es-toolkit/dist/compat/string/startsWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/startsWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/string/startsWith.js +22 -12
- package/node_modules/es-toolkit/dist/compat/string/startsWith.mjs +22 -8
- package/node_modules/es-toolkit/dist/compat/string/template.d.mts +21 -20
- package/node_modules/es-toolkit/dist/compat/string/template.d.ts +21 -20
- package/node_modules/es-toolkit/dist/compat/string/template.js +120 -74
- package/node_modules/es-toolkit/dist/compat/string/template.mjs +120 -70
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.js +1 -0
- package/node_modules/es-toolkit/dist/compat/string/templateSettings.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/string/toLower.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toLower.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toLower.js +21 -8
- package/node_modules/es-toolkit/dist/compat/string/toLower.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/string/toUpper.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toUpper.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/toUpper.js +21 -8
- package/node_modules/es-toolkit/dist/compat/string/toUpper.mjs +21 -4
- package/node_modules/es-toolkit/dist/compat/string/trim.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/trim.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/trim.js +10 -26
- package/node_modules/es-toolkit/dist/compat/string/trim.mjs +10 -22
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.js +21 -14
- package/node_modules/es-toolkit/dist/compat/string/trimEnd.mjs +21 -10
- package/node_modules/es-toolkit/dist/compat/string/trimStart.d.mts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimStart.d.ts +10 -9
- package/node_modules/es-toolkit/dist/compat/string/trimStart.js +21 -14
- package/node_modules/es-toolkit/dist/compat/string/trimStart.mjs +21 -10
- package/node_modules/es-toolkit/dist/compat/string/truncate.d.mts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/truncate.d.ts +11 -10
- package/node_modules/es-toolkit/dist/compat/string/truncate.js +66 -46
- package/node_modules/es-toolkit/dist/compat/string/truncate.mjs +66 -42
- package/node_modules/es-toolkit/dist/compat/string/unescape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/unescape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/unescape.js +18 -9
- package/node_modules/es-toolkit/dist/compat/string/unescape.mjs +18 -5
- package/node_modules/es-toolkit/dist/compat/string/upperCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperCase.js +20 -10
- package/node_modules/es-toolkit/dist/compat/string/upperCase.mjs +20 -6
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.js +16 -9
- package/node_modules/es-toolkit/dist/compat/string/upperFirst.mjs +16 -5
- package/node_modules/es-toolkit/dist/compat/string/words.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/words.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/string/words.js +35 -33
- package/node_modules/es-toolkit/dist/compat/string/words.mjs +35 -29
- package/node_modules/es-toolkit/dist/compat/toolkit.d.mts +6 -6
- package/node_modules/es-toolkit/dist/compat/toolkit.d.ts +6 -6
- package/node_modules/es-toolkit/dist/compat/toolkit.js +5 -9
- package/node_modules/es-toolkit/dist/compat/toolkit.mjs +5 -5
- package/node_modules/es-toolkit/dist/compat/util/bindAll.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/bindAll.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/bindAll.js +50 -44
- package/node_modules/es-toolkit/dist/compat/util/bindAll.mjs +50 -40
- package/node_modules/es-toolkit/dist/compat/util/cond.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/cond.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/cond.js +19 -27
- package/node_modules/es-toolkit/dist/compat/util/cond.mjs +19 -23
- package/node_modules/es-toolkit/dist/compat/util/constant.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/constant.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/constant.js +17 -6
- package/node_modules/es-toolkit/dist/compat/util/constant.mjs +17 -2
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.d.mts +9 -8
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.d.ts +9 -8
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.js +20 -9
- package/node_modules/es-toolkit/dist/compat/util/defaultTo.mjs +20 -5
- package/node_modules/es-toolkit/dist/compat/util/eq.d.mts +1 -0
- package/node_modules/es-toolkit/dist/compat/util/eq.d.ts +1 -0
- package/node_modules/es-toolkit/dist/compat/util/eq.js +1 -0
- package/node_modules/es-toolkit/dist/compat/util/eq.mjs +1 -0
- package/node_modules/es-toolkit/dist/compat/util/gt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gt.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/gt.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/gte.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gte.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/gte.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/gte.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/invoke.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/invoke.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/invoke.js +44 -48
- package/node_modules/es-toolkit/dist/compat/util/invoke.mjs +44 -44
- package/node_modules/es-toolkit/dist/compat/util/iteratee.d.mts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/iteratee.d.ts +7 -6
- package/node_modules/es-toolkit/dist/compat/util/iteratee.js +46 -29
- package/node_modules/es-toolkit/dist/compat/util/iteratee.mjs +46 -25
- package/node_modules/es-toolkit/dist/compat/util/lt.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lt.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lt.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/lt.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/lte.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lte.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/lte.js +17 -11
- package/node_modules/es-toolkit/dist/compat/util/lte.mjs +17 -7
- package/node_modules/es-toolkit/dist/compat/util/method.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/method.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/method.js +25 -10
- package/node_modules/es-toolkit/dist/compat/util/method.mjs +25 -6
- package/node_modules/es-toolkit/dist/compat/util/methodOf.d.mts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/methodOf.d.ts +6 -5
- package/node_modules/es-toolkit/dist/compat/util/methodOf.js +25 -10
- package/node_modules/es-toolkit/dist/compat/util/methodOf.mjs +25 -6
- package/node_modules/es-toolkit/dist/compat/util/now.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/now.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/now.js +18 -6
- package/node_modules/es-toolkit/dist/compat/util/now.mjs +18 -2
- package/node_modules/es-toolkit/dist/compat/util/over.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/over.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/over.js +34 -14
- package/node_modules/es-toolkit/dist/compat/util/over.mjs +34 -10
- package/node_modules/es-toolkit/dist/compat/util/overEvery.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overEvery.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overEvery.js +58 -24
- package/node_modules/es-toolkit/dist/compat/util/overEvery.mjs +58 -20
- package/node_modules/es-toolkit/dist/compat/util/overSome.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overSome.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/overSome.js +60 -24
- package/node_modules/es-toolkit/dist/compat/util/overSome.mjs +60 -20
- package/node_modules/es-toolkit/dist/compat/util/stubArray.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubArray.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubArray.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubArray.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubFalse.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/stubObject.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubObject.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubObject.js +10 -6
- package/node_modules/es-toolkit/dist/compat/util/stubObject.mjs +10 -2
- package/node_modules/es-toolkit/dist/compat/util/stubString.d.mts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubString.d.ts +4 -3
- package/node_modules/es-toolkit/dist/compat/util/stubString.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubString.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.js +3 -6
- package/node_modules/es-toolkit/dist/compat/util/stubTrue.mjs +3 -2
- package/node_modules/es-toolkit/dist/compat/util/times.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/times.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/times.js +19 -16
- package/node_modules/es-toolkit/dist/compat/util/times.mjs +19 -12
- package/node_modules/es-toolkit/dist/compat/util/toArray.d.mts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/toArray.d.ts +8 -7
- package/node_modules/es-toolkit/dist/compat/util/toArray.js +20 -18
- package/node_modules/es-toolkit/dist/compat/util/toArray.mjs +20 -14
- package/node_modules/es-toolkit/dist/compat/util/toFinite.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toFinite.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toFinite.js +21 -16
- package/node_modules/es-toolkit/dist/compat/util/toFinite.mjs +21 -12
- package/node_modules/es-toolkit/dist/compat/util/toInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toInteger.js +23 -10
- package/node_modules/es-toolkit/dist/compat/util/toInteger.mjs +23 -6
- package/node_modules/es-toolkit/dist/compat/util/toLength.d.mts +7 -5
- package/node_modules/es-toolkit/dist/compat/util/toLength.d.ts +7 -5
- package/node_modules/es-toolkit/dist/compat/util/toLength.js +23 -13
- package/node_modules/es-toolkit/dist/compat/util/toLength.mjs +23 -9
- package/node_modules/es-toolkit/dist/compat/util/toNumber.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toNumber.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toNumber.js +21 -11
- package/node_modules/es-toolkit/dist/compat/util/toNumber.mjs +21 -7
- package/node_modules/es-toolkit/dist/compat/util/toPath.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPath.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPath.js +63 -79
- package/node_modules/es-toolkit/dist/compat/util/toPath.mjs +63 -75
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.js +30 -25
- package/node_modules/es-toolkit/dist/compat/util/toPlainObject.mjs +30 -21
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.js +24 -13
- package/node_modules/es-toolkit/dist/compat/util/toSafeInteger.mjs +24 -9
- package/node_modules/es-toolkit/dist/compat/util/toString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/toString.js +24 -19
- package/node_modules/es-toolkit/dist/compat/util/toString.mjs +24 -15
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.d.mts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.d.ts +5 -4
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.js +27 -8
- package/node_modules/es-toolkit/dist/compat/util/uniqueId.mjs +27 -4
- package/node_modules/es-toolkit/dist/error/AbortError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/error/AbortError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/error/AbortError.js +12 -12
- package/node_modules/es-toolkit/dist/error/AbortError.mjs +12 -8
- package/node_modules/es-toolkit/dist/error/TimeoutError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/error/TimeoutError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/error/TimeoutError.js +12 -12
- package/node_modules/es-toolkit/dist/error/TimeoutError.mjs +12 -8
- package/node_modules/es-toolkit/dist/error/index.d.mts +3 -2
- package/node_modules/es-toolkit/dist/error/index.d.ts +3 -2
- package/node_modules/es-toolkit/dist/error/index.js +5 -11
- package/node_modules/es-toolkit/dist/error/index.mjs +3 -2
- package/node_modules/es-toolkit/dist/fp/_internal/lazy.js +58 -0
- package/node_modules/es-toolkit/dist/fp/_internal/lazy.mjs +57 -0
- package/node_modules/es-toolkit/dist/fp/array/at.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/at.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/at.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/at.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.d.mts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.d.ts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/cartesianProduct.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/chunk.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/chunkBy.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/combinations.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.js +31 -0
- package/node_modules/es-toolkit/dist/fp/array/compact.mjs +30 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/countBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/difference.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.js +33 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceBy.mjs +32 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/differenceWith.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.js +31 -0
- package/node_modules/es-toolkit/dist/fp/array/drop.mjs +30 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRight.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropRightWhile.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/dropWhile.mjs +36 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.d.mts +45 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.d.ts +45 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.js +13 -0
- package/node_modules/es-toolkit/dist/fp/array/filter.mjs +12 -0
- package/node_modules/es-toolkit/dist/fp/array/find.d.mts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/find.d.ts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/find.js +8 -0
- package/node_modules/es-toolkit/dist/fp/array/find.mjs +8 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/findIndex.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.d.mts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.d.ts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.js +11 -0
- package/node_modules/es-toolkit/dist/fp/array/findLast.mjs +11 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/findLastIndex.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.d.mts +28 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.d.ts +28 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.js +39 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMap.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.d.mts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.d.ts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.js +38 -0
- package/node_modules/es-toolkit/dist/fp/array/flatMapDeep.mjs +37 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.js +39 -0
- package/node_modules/es-toolkit/dist/fp/array/flatten.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/flattenDeep.mjs +35 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.js +33 -0
- package/node_modules/es-toolkit/dist/fp/array/forEach.mjs +32 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/groupBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/head.d.mts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/head.d.ts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/head.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/head.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/index.d.mts +69 -0
- package/node_modules/es-toolkit/dist/fp/array/index.d.ts +69 -0
- package/node_modules/es-toolkit/dist/fp/array/index.js +68 -0
- package/node_modules/es-toolkit/dist/fp/array/index.mjs +68 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/initial.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/intersection.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.js +33 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionBy.mjs +32 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/intersectionWith.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubset.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/isSubsetWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/join.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/join.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/join.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/join.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/keyBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/last.d.mts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/last.d.ts +35 -0
- package/node_modules/es-toolkit/dist/fp/array/last.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/last.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/length.d.mts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/length.d.ts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/length.js +22 -0
- package/node_modules/es-toolkit/dist/fp/array/length.mjs +22 -0
- package/node_modules/es-toolkit/dist/fp/array/map.d.mts +27 -0
- package/node_modules/es-toolkit/dist/fp/array/map.d.ts +27 -0
- package/node_modules/es-toolkit/dist/fp/array/map.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/map.mjs +35 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.d.mts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.d.ts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/maxBy.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.d.mts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.d.ts +37 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/minBy.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/orderBy.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.d.mts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.d.ts +39 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/partition.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.js +23 -0
- package/node_modules/es-toolkit/dist/fp/array/reverse.mjs +23 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.d.mts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.d.ts +18 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.js +23 -0
- package/node_modules/es-toolkit/dist/fp/array/sample.mjs +23 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/sampleSize.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/shuffle.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.d.mts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.d.ts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.js +31 -0
- package/node_modules/es-toolkit/dist/fp/array/sortBy.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/tail.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/take.d.mts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/take.d.ts +26 -0
- package/node_modules/es-toolkit/dist/fp/array/take.js +39 -0
- package/node_modules/es-toolkit/dist/fp/array/take.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRight.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeRightWhile.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.js +32 -0
- package/node_modules/es-toolkit/dist/fp/array/takeWhile.mjs +31 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.d.mts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.d.ts +23 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.js +30 -0
- package/node_modules/es-toolkit/dist/fp/array/toFilled.mjs +30 -0
- package/node_modules/es-toolkit/dist/fp/array/union.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/union.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/union.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/union.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.js +27 -0
- package/node_modules/es-toolkit/dist/fp/array/unionBy.mjs +27 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/unionWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.js +36 -0
- package/node_modules/es-toolkit/dist/fp/array/uniq.mjs +36 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.js +38 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqBy.mjs +38 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.js +35 -0
- package/node_modules/es-toolkit/dist/fp/array/uniqWith.mjs +35 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.js +24 -0
- package/node_modules/es-toolkit/dist/fp/array/unzip.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/unzipWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.d.mts +25 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.d.ts +25 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.js +50 -0
- package/node_modules/es-toolkit/dist/fp/array/windowed.mjs +50 -0
- package/node_modules/es-toolkit/dist/fp/array/without.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/without.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/array/without.js +30 -0
- package/node_modules/es-toolkit/dist/fp/array/without.mjs +29 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.d.mts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.d.ts +20 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.js +25 -0
- package/node_modules/es-toolkit/dist/fp/array/xor.mjs +25 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.d.mts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.d.ts +22 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.js +27 -0
- package/node_modules/es-toolkit/dist/fp/array/xorBy.mjs +27 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/xorWith.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.d.mts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.d.ts +61 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/zip.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.d.mts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.d.ts +21 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.js +26 -0
- package/node_modules/es-toolkit/dist/fp/array/zipObject.mjs +26 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.d.mts +57 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.d.ts +57 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.js +9 -0
- package/node_modules/es-toolkit/dist/fp/array/zipWith.mjs +9 -0
- package/node_modules/es-toolkit/dist/fp/index.d.mts +75 -0
- package/node_modules/es-toolkit/dist/fp/index.d.ts +75 -0
- package/node_modules/es-toolkit/dist/fp/index.js +150 -0
- package/node_modules/es-toolkit/dist/fp/index.mjs +77 -0
- package/node_modules/es-toolkit/dist/fp/math/add.d.mts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/add.d.ts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/add.js +21 -0
- package/node_modules/es-toolkit/dist/fp/math/add.mjs +21 -0
- package/node_modules/es-toolkit/dist/fp/math/index.d.mts +2 -0
- package/node_modules/es-toolkit/dist/fp/math/index.d.ts +2 -0
- package/node_modules/es-toolkit/dist/fp/math/index.js +2 -0
- package/node_modules/es-toolkit/dist/fp/math/index.mjs +2 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.d.mts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.d.ts +17 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.js +21 -0
- package/node_modules/es-toolkit/dist/fp/math/multiply.mjs +21 -0
- package/node_modules/es-toolkit/dist/fp/object/index.d.mts +2 -0
- package/node_modules/es-toolkit/dist/fp/object/index.d.ts +2 -0
- package/node_modules/es-toolkit/dist/fp/object/index.js +2 -0
- package/node_modules/es-toolkit/dist/fp/object/index.mjs +2 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.d.mts +18 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.d.ts +18 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.js +23 -0
- package/node_modules/es-toolkit/dist/fp/object/omit.mjs +23 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.d.mts +19 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.d.ts +19 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.js +24 -0
- package/node_modules/es-toolkit/dist/fp/object/pick.mjs +24 -0
- package/node_modules/es-toolkit/dist/fp/pipe.d.mts +235 -0
- package/node_modules/es-toolkit/dist/fp/pipe.d.ts +235 -0
- package/node_modules/es-toolkit/dist/fp/pipe.js +116 -0
- package/node_modules/es-toolkit/dist/fp/pipe.mjs +116 -0
- package/node_modules/es-toolkit/dist/function/after.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/after.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/after.js +35 -15
- package/node_modules/es-toolkit/dist/function/after.mjs +35 -11
- package/node_modules/es-toolkit/dist/function/ary.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/ary.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/ary.js +23 -8
- package/node_modules/es-toolkit/dist/function/ary.mjs +23 -4
- package/node_modules/es-toolkit/dist/function/asyncNoop.d.mts +4 -3
- package/node_modules/es-toolkit/dist/function/asyncNoop.d.ts +4 -3
- package/node_modules/es-toolkit/dist/function/asyncNoop.js +12 -6
- package/node_modules/es-toolkit/dist/function/asyncNoop.mjs +12 -2
- package/node_modules/es-toolkit/dist/function/before.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/before.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/before.js +35 -15
- package/node_modules/es-toolkit/dist/function/before.mjs +35 -11
- package/node_modules/es-toolkit/dist/function/curry.d.mts +17 -16
- package/node_modules/es-toolkit/dist/function/curry.d.ts +17 -16
- package/node_modules/es-toolkit/dist/function/curry.js +36 -20
- package/node_modules/es-toolkit/dist/function/curry.mjs +36 -16
- package/node_modules/es-toolkit/dist/function/curryRight.d.mts +17 -16
- package/node_modules/es-toolkit/dist/function/curryRight.d.ts +17 -16
- package/node_modules/es-toolkit/dist/function/curryRight.js +38 -20
- package/node_modules/es-toolkit/dist/function/curryRight.mjs +38 -16
- package/node_modules/es-toolkit/dist/function/debounce.d.mts +42 -39
- package/node_modules/es-toolkit/dist/function/debounce.d.ts +42 -39
- package/node_modules/es-toolkit/dist/function/debounce.js +88 -63
- package/node_modules/es-toolkit/dist/function/debounce.mjs +88 -59
- package/node_modules/es-toolkit/dist/function/flow.d.mts +27 -26
- package/node_modules/es-toolkit/dist/function/flow.d.ts +27 -26
- package/node_modules/es-toolkit/dist/function/flow.js +22 -12
- package/node_modules/es-toolkit/dist/function/flow.mjs +22 -8
- package/node_modules/es-toolkit/dist/function/flowRight.d.mts +27 -26
- package/node_modules/es-toolkit/dist/function/flowRight.d.ts +27 -26
- package/node_modules/es-toolkit/dist/function/flowRight.js +21 -8
- package/node_modules/es-toolkit/dist/function/flowRight.mjs +21 -4
- package/node_modules/es-toolkit/dist/function/identity.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/identity.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/identity.js +22 -6
- package/node_modules/es-toolkit/dist/function/identity.mjs +22 -2
- package/node_modules/es-toolkit/dist/function/index.d.mts +22 -21
- package/node_modules/es-toolkit/dist/function/index.d.ts +22 -21
- package/node_modules/es-toolkit/dist/function/index.js +43 -49
- package/node_modules/es-toolkit/dist/function/index.mjs +22 -21
- package/node_modules/es-toolkit/dist/function/memoize.d.mts +46 -45
- package/node_modules/es-toolkit/dist/function/memoize.d.ts +46 -45
- package/node_modules/es-toolkit/dist/function/memoize.js +84 -17
- package/node_modules/es-toolkit/dist/function/memoize.mjs +84 -13
- package/node_modules/es-toolkit/dist/function/negate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/negate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/negate.js +16 -6
- package/node_modules/es-toolkit/dist/function/negate.mjs +16 -2
- package/node_modules/es-toolkit/dist/function/noop.d.mts +4 -3
- package/node_modules/es-toolkit/dist/function/noop.d.ts +4 -3
- package/node_modules/es-toolkit/dist/function/noop.js +12 -6
- package/node_modules/es-toolkit/dist/function/noop.mjs +12 -2
- package/node_modules/es-toolkit/dist/function/once.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/once.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/once.js +28 -14
- package/node_modules/es-toolkit/dist/function/once.mjs +28 -10
- package/node_modules/es-toolkit/dist/function/partial.d.mts +135 -133
- package/node_modules/es-toolkit/dist/function/partial.d.ts +135 -133
- package/node_modules/es-toolkit/dist/function/partial.js +38 -19
- package/node_modules/es-toolkit/dist/function/partial.mjs +38 -15
- package/node_modules/es-toolkit/dist/function/partialRight.d.mts +140 -138
- package/node_modules/es-toolkit/dist/function/partialRight.d.ts +140 -138
- package/node_modules/es-toolkit/dist/function/partialRight.js +40 -21
- package/node_modules/es-toolkit/dist/function/partialRight.mjs +40 -17
- package/node_modules/es-toolkit/dist/function/rest.d.mts +6 -5
- package/node_modules/es-toolkit/dist/function/rest.d.ts +6 -5
- package/node_modules/es-toolkit/dist/function/rest.js +38 -13
- package/node_modules/es-toolkit/dist/function/rest.mjs +38 -9
- package/node_modules/es-toolkit/dist/function/retry.d.mts +45 -44
- package/node_modules/es-toolkit/dist/function/retry.d.ts +45 -44
- package/node_modules/es-toolkit/dist/function/retry.js +39 -41
- package/node_modules/es-toolkit/dist/function/retry.mjs +38 -37
- package/node_modules/es-toolkit/dist/function/spread.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/spread.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/spread.js +21 -8
- package/node_modules/es-toolkit/dist/function/spread.mjs +21 -4
- package/node_modules/es-toolkit/dist/function/throttle.d.mts +25 -21
- package/node_modules/es-toolkit/dist/function/throttle.d.ts +25 -21
- package/node_modules/es-toolkit/dist/function/throttle.js +52 -29
- package/node_modules/es-toolkit/dist/function/throttle.mjs +52 -25
- package/node_modules/es-toolkit/dist/function/unary.d.mts +5 -4
- package/node_modules/es-toolkit/dist/function/unary.d.ts +5 -4
- package/node_modules/es-toolkit/dist/function/unary.js +18 -8
- package/node_modules/es-toolkit/dist/function/unary.mjs +18 -4
- package/node_modules/es-toolkit/dist/index.d.mts +188 -180
- package/node_modules/es-toolkit/dist/index.d.ts +188 -180
- package/node_modules/es-toolkit/dist/index.js +387 -370
- package/node_modules/es-toolkit/dist/index.mjs +197 -180
- package/node_modules/es-toolkit/dist/map/countBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/countBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/countBy.js +40 -11
- package/node_modules/es-toolkit/dist/map/countBy.mjs +40 -7
- package/node_modules/es-toolkit/dist/map/every.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/every.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/every.js +29 -11
- package/node_modules/es-toolkit/dist/map/every.mjs +29 -7
- package/node_modules/es-toolkit/dist/map/filter.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/filter.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/filter.js +31 -12
- package/node_modules/es-toolkit/dist/map/filter.mjs +31 -8
- package/node_modules/es-toolkit/dist/map/findKey.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/findKey.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/findKey.js +30 -13
- package/node_modules/es-toolkit/dist/map/findKey.mjs +30 -9
- package/node_modules/es-toolkit/dist/map/findValue.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/findValue.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/findValue.js +30 -13
- package/node_modules/es-toolkit/dist/map/findValue.mjs +30 -9
- package/node_modules/es-toolkit/dist/map/forEach.d.mts +5 -5
- package/node_modules/es-toolkit/dist/map/forEach.d.ts +5 -5
- package/node_modules/es-toolkit/dist/map/forEach.js +28 -8
- package/node_modules/es-toolkit/dist/map/forEach.mjs +28 -4
- package/node_modules/es-toolkit/dist/map/hasValue.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/hasValue.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/hasValue.js +30 -13
- package/node_modules/es-toolkit/dist/map/hasValue.mjs +30 -9
- package/node_modules/es-toolkit/dist/map/index.d.mts +13 -12
- package/node_modules/es-toolkit/dist/map/index.d.ts +13 -12
- package/node_modules/es-toolkit/dist/map/index.js +25 -31
- package/node_modules/es-toolkit/dist/map/index.mjs +13 -12
- package/node_modules/es-toolkit/dist/map/keyBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/keyBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/keyBy.js +36 -11
- package/node_modules/es-toolkit/dist/map/keyBy.mjs +36 -7
- package/node_modules/es-toolkit/dist/map/mapKeys.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/mapKeys.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/mapKeys.js +35 -11
- package/node_modules/es-toolkit/dist/map/mapKeys.mjs +35 -7
- package/node_modules/es-toolkit/dist/map/mapValues.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/mapValues.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/mapValues.js +35 -11
- package/node_modules/es-toolkit/dist/map/mapValues.mjs +35 -7
- package/node_modules/es-toolkit/dist/map/reduce.d.mts +7 -6
- package/node_modules/es-toolkit/dist/map/reduce.d.ts +7 -6
- package/node_modules/es-toolkit/dist/map/reduce.js +39 -18
- package/node_modules/es-toolkit/dist/map/reduce.mjs +39 -14
- package/node_modules/es-toolkit/dist/map/some.d.mts +6 -5
- package/node_modules/es-toolkit/dist/map/some.d.ts +6 -5
- package/node_modules/es-toolkit/dist/map/some.js +29 -11
- package/node_modules/es-toolkit/dist/map/some.mjs +29 -7
- package/node_modules/es-toolkit/dist/math/clamp.d.mts +10 -9
- package/node_modules/es-toolkit/dist/math/clamp.d.ts +10 -9
- package/node_modules/es-toolkit/dist/math/clamp.js +21 -9
- package/node_modules/es-toolkit/dist/math/clamp.mjs +21 -5
- package/node_modules/es-toolkit/dist/math/inRange.d.mts +10 -9
- package/node_modules/es-toolkit/dist/math/inRange.d.ts +10 -9
- package/node_modules/es-toolkit/dist/math/inRange.js +22 -13
- package/node_modules/es-toolkit/dist/math/inRange.mjs +22 -9
- package/node_modules/es-toolkit/dist/math/index.d.mts +15 -13
- package/node_modules/es-toolkit/dist/math/index.d.ts +15 -13
- package/node_modules/es-toolkit/dist/math/index.js +29 -33
- package/node_modules/es-toolkit/dist/math/index.mjs +15 -13
- package/node_modules/es-toolkit/dist/math/mean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/math/mean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/math/mean.js +17 -8
- package/node_modules/es-toolkit/dist/math/mean.mjs +17 -4
- package/node_modules/es-toolkit/dist/math/meanBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/meanBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/meanBy.js +19 -8
- package/node_modules/es-toolkit/dist/math/meanBy.mjs +19 -4
- package/node_modules/es-toolkit/dist/math/median.d.mts +5 -4
- package/node_modules/es-toolkit/dist/math/median.d.ts +5 -4
- package/node_modules/es-toolkit/dist/math/median.js +29 -16
- package/node_modules/es-toolkit/dist/math/median.mjs +29 -12
- package/node_modules/es-toolkit/dist/math/medianBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/medianBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/medianBy.js +25 -9
- package/node_modules/es-toolkit/dist/math/medianBy.mjs +24 -5
- package/node_modules/es-toolkit/dist/math/percentile.d.mts +29 -0
- package/node_modules/es-toolkit/dist/math/percentile.d.ts +29 -0
- package/node_modules/es-toolkit/dist/math/percentile.js +39 -0
- package/node_modules/es-toolkit/dist/math/percentile.mjs +39 -0
- package/node_modules/es-toolkit/dist/math/random.d.mts +8 -7
- package/node_modules/es-toolkit/dist/math/random.d.ts +8 -7
- package/node_modules/es-toolkit/dist/math/random.js +21 -13
- package/node_modules/es-toolkit/dist/math/random.mjs +21 -9
- package/node_modules/es-toolkit/dist/math/randomInt.d.mts +8 -7
- package/node_modules/es-toolkit/dist/math/randomInt.d.ts +8 -7
- package/node_modules/es-toolkit/dist/math/randomInt.js +18 -8
- package/node_modules/es-toolkit/dist/math/randomInt.mjs +18 -4
- package/node_modules/es-toolkit/dist/math/range.d.mts +12 -11
- package/node_modules/es-toolkit/dist/math/range.d.ts +12 -11
- package/node_modules/es-toolkit/dist/math/range.js +28 -18
- package/node_modules/es-toolkit/dist/math/range.mjs +28 -14
- package/node_modules/es-toolkit/dist/math/rangeRight.d.mts +12 -11
- package/node_modules/es-toolkit/dist/math/rangeRight.d.ts +12 -11
- package/node_modules/es-toolkit/dist/math/rangeRight.js +28 -18
- package/node_modules/es-toolkit/dist/math/rangeRight.mjs +28 -14
- package/node_modules/es-toolkit/dist/math/round.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/round.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/round.js +22 -10
- package/node_modules/es-toolkit/dist/math/round.mjs +22 -6
- package/node_modules/es-toolkit/dist/math/sum.d.mts +5 -4
- package/node_modules/es-toolkit/dist/math/sum.d.ts +5 -4
- package/node_modules/es-toolkit/dist/math/sum.js +18 -10
- package/node_modules/es-toolkit/dist/math/sum.mjs +18 -6
- package/node_modules/es-toolkit/dist/math/sumBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/math/sumBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/math/sumBy.js +21 -10
- package/node_modules/es-toolkit/dist/math/sumBy.mjs +21 -6
- package/node_modules/es-toolkit/dist/object/clone.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/clone.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/clone.js +58 -54
- package/node_modules/es-toolkit/dist/object/clone.mjs +58 -50
- package/node_modules/es-toolkit/dist/object/cloneDeep.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/cloneDeep.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/cloneDeep.js +50 -8
- package/node_modules/es-toolkit/dist/object/cloneDeep.mjs +50 -4
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.d.mts +8 -5
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.d.ts +8 -5
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.js +173 -170
- package/node_modules/es-toolkit/dist/object/cloneDeepWith.mjs +173 -166
- package/node_modules/es-toolkit/dist/object/findKey.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/findKey.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/findKey.js +21 -7
- package/node_modules/es-toolkit/dist/object/findKey.mjs +21 -3
- package/node_modules/es-toolkit/dist/object/flattenObject.d.mts +14 -11
- package/node_modules/es-toolkit/dist/object/flattenObject.d.ts +14 -11
- package/node_modules/es-toolkit/dist/object/flattenObject.js +48 -26
- package/node_modules/es-toolkit/dist/object/flattenObject.mjs +48 -22
- package/node_modules/es-toolkit/dist/object/index.d.mts +19 -17
- package/node_modules/es-toolkit/dist/object/index.d.ts +19 -17
- package/node_modules/es-toolkit/dist/object/index.js +37 -41
- package/node_modules/es-toolkit/dist/object/index.mjs +19 -17
- package/node_modules/es-toolkit/dist/object/invert.d.mts +5 -4
- package/node_modules/es-toolkit/dist/object/invert.d.ts +5 -4
- package/node_modules/es-toolkit/dist/object/invert.js +28 -13
- package/node_modules/es-toolkit/dist/object/invert.mjs +28 -9
- package/node_modules/es-toolkit/dist/object/mapKeys.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/mapKeys.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/mapKeys.js +27 -13
- package/node_modules/es-toolkit/dist/object/mapKeys.mjs +27 -9
- package/node_modules/es-toolkit/dist/object/mapValues.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/mapValues.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/mapValues.js +28 -13
- package/node_modules/es-toolkit/dist/object/mapValues.mjs +28 -9
- package/node_modules/es-toolkit/dist/object/merge.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/merge.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/merge.js +57 -31
- package/node_modules/es-toolkit/dist/object/merge.mjs +57 -27
- package/node_modules/es-toolkit/dist/object/mergeWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/object/mergeWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/object/mergeWith.js +67 -41
- package/node_modules/es-toolkit/dist/object/mergeWith.mjs +67 -37
- package/node_modules/es-toolkit/dist/object/omit.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/omit.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/omit.js +25 -11
- package/node_modules/es-toolkit/dist/object/omit.mjs +25 -7
- package/node_modules/es-toolkit/dist/object/omitBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/omitBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/omitBy.js +29 -15
- package/node_modules/es-toolkit/dist/object/omitBy.mjs +29 -11
- package/node_modules/es-toolkit/dist/object/pick.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/pick.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/pick.js +25 -13
- package/node_modules/es-toolkit/dist/object/pick.mjs +25 -9
- package/node_modules/es-toolkit/dist/object/pickBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/pickBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/pickBy.js +29 -15
- package/node_modules/es-toolkit/dist/object/pickBy.mjs +29 -11
- package/node_modules/es-toolkit/dist/object/sortKeys.d.mts +22 -0
- package/node_modules/es-toolkit/dist/object/sortKeys.d.ts +22 -0
- package/node_modules/es-toolkit/dist/object/sortKeys.js +30 -0
- package/node_modules/es-toolkit/dist/object/sortKeys.mjs +30 -0
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.d.mts +6 -7
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.d.ts +6 -7
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.js +63 -24
- package/node_modules/es-toolkit/dist/object/toCamelCaseKeys.mjs +63 -20
- package/node_modules/es-toolkit/dist/object/toMerged.d.mts +6 -5
- package/node_modules/es-toolkit/dist/object/toMerged.d.ts +6 -5
- package/node_modules/es-toolkit/dist/object/toMerged.js +54 -27
- package/node_modules/es-toolkit/dist/object/toMerged.mjs +54 -23
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.d.mts +6 -7
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.d.ts +6 -7
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.js +63 -24
- package/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.mjs +63 -20
- package/node_modules/es-toolkit/dist/predicate/index.d.mts +34 -32
- package/node_modules/es-toolkit/dist/predicate/index.d.ts +34 -32
- package/node_modules/es-toolkit/dist/predicate/index.js +69 -73
- package/node_modules/es-toolkit/dist/predicate/index.mjs +34 -32
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isArrayBuffer.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isBlob.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBlob.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBlob.js +20 -9
- package/node_modules/es-toolkit/dist/predicate/isBlob.mjs +20 -5
- package/node_modules/es-toolkit/dist/predicate/isBoolean.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBoolean.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBoolean.js +25 -6
- package/node_modules/es-toolkit/dist/predicate/isBoolean.mjs +25 -2
- package/node_modules/es-toolkit/dist/predicate/isBrowser.d.mts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isBrowser.d.ts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isBrowser.js +17 -6
- package/node_modules/es-toolkit/dist/predicate/isBrowser.mjs +17 -2
- package/node_modules/es-toolkit/dist/predicate/isBuffer.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBuffer.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isBuffer.js +22 -8
- package/node_modules/es-toolkit/dist/predicate/isBuffer.mjs +22 -4
- package/node_modules/es-toolkit/dist/predicate/isDate.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isDate.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isDate.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isDate.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.js +16 -8
- package/node_modules/es-toolkit/dist/predicate/isEmptyObject.mjs +16 -4
- package/node_modules/es-toolkit/dist/predicate/isEqual.d.mts +6 -5
- package/node_modules/es-toolkit/dist/predicate/isEqual.d.ts +6 -5
- package/node_modules/es-toolkit/dist/predicate/isEqual.js +19 -9
- package/node_modules/es-toolkit/dist/predicate/isEqual.mjs +19 -5
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.d.mts +7 -6
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.d.ts +7 -6
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.js +146 -183
- package/node_modules/es-toolkit/dist/predicate/isEqualWith.mjs +142 -179
- package/node_modules/es-toolkit/dist/predicate/isError.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isError.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isError.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isError.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isFile.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFile.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFile.js +23 -11
- package/node_modules/es-toolkit/dist/predicate/isFile.mjs +23 -7
- package/node_modules/es-toolkit/dist/predicate/isFunction.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFunction.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isFunction.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isFunction.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isIterable.d.mts +26 -0
- package/node_modules/es-toolkit/dist/predicate/isIterable.d.ts +26 -0
- package/node_modules/es-toolkit/dist/predicate/isIterable.js +28 -0
- package/node_modules/es-toolkit/dist/predicate/isIterable.mjs +28 -0
- package/node_modules/es-toolkit/dist/predicate/isJSON.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isJSON.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isJSON.js +37 -15
- package/node_modules/es-toolkit/dist/predicate/isJSON.mjs +37 -11
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.d.mts +9 -8
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.d.ts +9 -8
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.js +76 -39
- package/node_modules/es-toolkit/dist/predicate/isJSONValue.mjs +76 -35
- package/node_modules/es-toolkit/dist/predicate/isLength.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isLength.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isLength.js +24 -6
- package/node_modules/es-toolkit/dist/predicate/isLength.mjs +24 -2
- package/node_modules/es-toolkit/dist/predicate/isMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isMap.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isMap.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isNil.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNil.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNil.js +22 -6
- package/node_modules/es-toolkit/dist/predicate/isNil.mjs +22 -2
- package/node_modules/es-toolkit/dist/predicate/isNode.d.mts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isNode.d.ts +4 -3
- package/node_modules/es-toolkit/dist/predicate/isNode.js +17 -6
- package/node_modules/es-toolkit/dist/predicate/isNode.mjs +17 -2
- package/node_modules/es-toolkit/dist/predicate/isNotNil.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNotNil.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNotNil.js +19 -6
- package/node_modules/es-toolkit/dist/predicate/isNotNil.mjs +19 -2
- package/node_modules/es-toolkit/dist/predicate/isNull.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNull.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isNull.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isNull.mjs +23 -2
- package/node_modules/es-toolkit/dist/predicate/isNumber.d.mts +7 -4
- package/node_modules/es-toolkit/dist/predicate/isNumber.d.ts +7 -4
- package/node_modules/es-toolkit/dist/predicate/isNumber.js +27 -6
- package/node_modules/es-toolkit/dist/predicate/isNumber.mjs +27 -2
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.js +48 -16
- package/node_modules/es-toolkit/dist/predicate/isPlainObject.mjs +48 -12
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.d.mts +5 -11
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.d.ts +5 -11
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.js +24 -6
- package/node_modules/es-toolkit/dist/predicate/isPrimitive.mjs +24 -2
- package/node_modules/es-toolkit/dist/predicate/isPromise.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPromise.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isPromise.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isPromise.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isRegExp.js +16 -6
- package/node_modules/es-toolkit/dist/predicate/isRegExp.mjs +16 -2
- package/node_modules/es-toolkit/dist/predicate/isSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSet.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isSet.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isString.js +20 -6
- package/node_modules/es-toolkit/dist/predicate/isString.mjs +20 -2
- package/node_modules/es-toolkit/dist/predicate/isSymbol.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSymbol.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isSymbol.js +26 -6
- package/node_modules/es-toolkit/dist/predicate/isSymbol.mjs +26 -2
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.d.mts +5 -15
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.d.ts +5 -15
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.js +18 -6
- package/node_modules/es-toolkit/dist/predicate/isTypedArray.mjs +18 -2
- package/node_modules/es-toolkit/dist/predicate/isUndefined.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isUndefined.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isUndefined.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isUndefined.mjs +23 -2
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isWeakMap.mjs +23 -2
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.d.mts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.d.ts +5 -4
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.js +23 -6
- package/node_modules/es-toolkit/dist/predicate/isWeakSet.mjs +23 -2
- package/node_modules/es-toolkit/dist/promise/allKeyed.d.mts +31 -0
- package/node_modules/es-toolkit/dist/promise/allKeyed.d.ts +31 -0
- package/node_modules/es-toolkit/dist/promise/allKeyed.js +37 -0
- package/node_modules/es-toolkit/dist/promise/allKeyed.mjs +37 -0
- package/node_modules/es-toolkit/dist/promise/delay.d.mts +11 -8
- package/node_modules/es-toolkit/dist/promise/delay.d.ts +11 -8
- package/node_modules/es-toolkit/dist/promise/delay.js +50 -24
- package/node_modules/es-toolkit/dist/promise/delay.mjs +50 -20
- package/node_modules/es-toolkit/dist/promise/index.d.mts +7 -5
- package/node_modules/es-toolkit/dist/promise/index.d.ts +7 -5
- package/node_modules/es-toolkit/dist/promise/index.js +13 -17
- package/node_modules/es-toolkit/dist/promise/index.mjs +7 -5
- package/node_modules/es-toolkit/dist/promise/mutex.d.mts +44 -43
- package/node_modules/es-toolkit/dist/promise/mutex.d.ts +44 -43
- package/node_modules/es-toolkit/dist/promise/mutex.js +71 -19
- package/node_modules/es-toolkit/dist/promise/mutex.mjs +71 -15
- package/node_modules/es-toolkit/dist/promise/semaphore.d.mts +55 -54
- package/node_modules/es-toolkit/dist/promise/semaphore.d.ts +55 -54
- package/node_modules/es-toolkit/dist/promise/semaphore.js +99 -33
- package/node_modules/es-toolkit/dist/promise/semaphore.mjs +99 -29
- package/node_modules/es-toolkit/dist/promise/timeout.d.mts +29 -5
- package/node_modules/es-toolkit/dist/promise/timeout.d.ts +29 -5
- package/node_modules/es-toolkit/dist/promise/timeout.js +47 -11
- package/node_modules/es-toolkit/dist/promise/timeout.mjs +47 -7
- package/node_modules/es-toolkit/dist/promise/withTimeout.d.mts +25 -6
- package/node_modules/es-toolkit/dist/promise/withTimeout.d.ts +25 -6
- package/node_modules/es-toolkit/dist/promise/withTimeout.js +43 -9
- package/node_modules/es-toolkit/dist/promise/withTimeout.mjs +43 -5
- package/node_modules/es-toolkit/dist/server/colors/_internal/parseHex.js +32 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/parseHex.mjs +32 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsi.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsi.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsiBg.js +30 -0
- package/node_modules/es-toolkit/dist/server/colors/_internal/wrapAnsiBg.mjs +30 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.js +19 -0
- package/node_modules/es-toolkit/dist/server/colors/ansi256.mjs +19 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.js +19 -0
- package/node_modules/es-toolkit/dist/server/colors/bgAnsi256.mjs +19 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlack.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlackBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlue.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgBlueBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyan.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgCyanBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreen.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgGreenBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgHex.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagenta.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgMagentaBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRed.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRedBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.d.mts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.d.ts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgRgb.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhite.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgWhiteBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellow.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bgYellowBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/black.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/black.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/black.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/black.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blackBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blue.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/blueBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/bold.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyan.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/cyanBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/dim.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/gray.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/gray.mjs +19 -0
- package/node_modules/es-toolkit/dist/server/colors/green.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/green.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/green.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/green.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/greenBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.d.mts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.d.ts +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/hex.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/hidden.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/index.d.mts +99 -0
- package/node_modules/es-toolkit/dist/server/colors/index.d.ts +99 -0
- package/node_modules/es-toolkit/dist/server/colors/index.js +99 -0
- package/node_modules/es-toolkit/dist/server/colors/index.mjs +99 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/inverse.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/italic.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magenta.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/magentaBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/red.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/red.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/red.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/red.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/redBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/reset.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.d.mts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.d.ts +20 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.js +21 -0
- package/node_modules/es-toolkit/dist/server/colors/rgb.mjs +21 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/strikethrough.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/types.d.mts +4 -0
- package/node_modules/es-toolkit/dist/server/colors/types.d.ts +4 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/underline.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/white.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/white.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/white.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/white.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/whiteBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellow.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.d.mts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.d.ts +15 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.js +18 -0
- package/node_modules/es-toolkit/dist/server/colors/yellowBright.mjs +18 -0
- package/node_modules/es-toolkit/dist/server/exec.d.mts +63 -0
- package/node_modules/es-toolkit/dist/server/exec.d.ts +63 -0
- package/node_modules/es-toolkit/dist/server/exec.js +103 -0
- package/node_modules/es-toolkit/dist/server/exec.mjs +102 -0
- package/node_modules/es-toolkit/dist/server/index.d.mts +4 -0
- package/node_modules/es-toolkit/dist/server/index.d.ts +4 -0
- package/node_modules/es-toolkit/dist/server/index.js +6 -0
- package/node_modules/es-toolkit/dist/server/index.mjs +3 -0
- package/node_modules/es-toolkit/dist/set/countBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/countBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/countBy.js +31 -11
- package/node_modules/es-toolkit/dist/set/countBy.mjs +31 -7
- package/node_modules/es-toolkit/dist/set/every.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/every.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/every.js +24 -11
- package/node_modules/es-toolkit/dist/set/every.mjs +24 -7
- package/node_modules/es-toolkit/dist/set/filter.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/filter.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/filter.js +22 -12
- package/node_modules/es-toolkit/dist/set/filter.mjs +22 -8
- package/node_modules/es-toolkit/dist/set/find.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/find.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/find.js +24 -11
- package/node_modules/es-toolkit/dist/set/find.mjs +24 -7
- package/node_modules/es-toolkit/dist/set/forEach.d.mts +5 -5
- package/node_modules/es-toolkit/dist/set/forEach.d.ts +5 -5
- package/node_modules/es-toolkit/dist/set/forEach.js +24 -8
- package/node_modules/es-toolkit/dist/set/forEach.mjs +24 -4
- package/node_modules/es-toolkit/dist/set/index.d.mts +10 -9
- package/node_modules/es-toolkit/dist/set/index.d.ts +10 -9
- package/node_modules/es-toolkit/dist/set/index.js +19 -25
- package/node_modules/es-toolkit/dist/set/index.mjs +10 -9
- package/node_modules/es-toolkit/dist/set/keyBy.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/keyBy.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/keyBy.js +35 -11
- package/node_modules/es-toolkit/dist/set/keyBy.mjs +35 -7
- package/node_modules/es-toolkit/dist/set/map.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/map.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/map.js +26 -11
- package/node_modules/es-toolkit/dist/set/map.mjs +26 -7
- package/node_modules/es-toolkit/dist/set/reduce.d.mts +7 -6
- package/node_modules/es-toolkit/dist/set/reduce.d.ts +7 -6
- package/node_modules/es-toolkit/dist/set/reduce.js +32 -18
- package/node_modules/es-toolkit/dist/set/reduce.mjs +32 -14
- package/node_modules/es-toolkit/dist/set/some.d.mts +6 -5
- package/node_modules/es-toolkit/dist/set/some.d.ts +6 -5
- package/node_modules/es-toolkit/dist/set/some.js +24 -11
- package/node_modules/es-toolkit/dist/set/some.mjs +24 -7
- package/node_modules/es-toolkit/dist/string/camelCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/camelCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/camelCase.js +24 -14
- package/node_modules/es-toolkit/dist/string/camelCase.mjs +24 -10
- package/node_modules/es-toolkit/dist/string/capitalize.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/capitalize.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/capitalize.js +14 -6
- package/node_modules/es-toolkit/dist/string/capitalize.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/constantCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/constantCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/constantCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/constantCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/deburr.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/deburr.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/deburr.js +58 -44
- package/node_modules/es-toolkit/dist/string/deburr.mjs +58 -40
- package/node_modules/es-toolkit/dist/string/escape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/escape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/escape.js +21 -11
- package/node_modules/es-toolkit/dist/string/escape.mjs +21 -7
- package/node_modules/es-toolkit/dist/string/escapeRegExp.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/escapeRegExp.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/escapeRegExp.js +14 -6
- package/node_modules/es-toolkit/dist/string/escapeRegExp.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/index.d.mts +22 -21
- package/node_modules/es-toolkit/dist/string/index.d.ts +22 -21
- package/node_modules/es-toolkit/dist/string/index.js +43 -49
- package/node_modules/es-toolkit/dist/string/index.mjs +22 -21
- package/node_modules/es-toolkit/dist/string/kebabCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/kebabCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/kebabCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/kebabCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/lowerCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/lowerCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/lowerFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/lowerFirst.js +14 -6
- package/node_modules/es-toolkit/dist/string/lowerFirst.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/pad.d.mts +7 -6
- package/node_modules/es-toolkit/dist/string/pad.d.ts +7 -6
- package/node_modules/es-toolkit/dist/string/pad.js +20 -7
- package/node_modules/es-toolkit/dist/string/pad.mjs +20 -3
- package/node_modules/es-toolkit/dist/string/pascalCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/pascalCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/pascalCase.js +19 -10
- package/node_modules/es-toolkit/dist/string/pascalCase.mjs +19 -6
- package/node_modules/es-toolkit/dist/string/reverseString.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/reverseString.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/reverseString.js +16 -6
- package/node_modules/es-toolkit/dist/string/reverseString.mjs +16 -2
- package/node_modules/es-toolkit/dist/string/snakeCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/snakeCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/snakeCase.js +18 -9
- package/node_modules/es-toolkit/dist/string/snakeCase.mjs +18 -5
- package/node_modules/es-toolkit/dist/string/startCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/startCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/startCase.js +24 -17
- package/node_modules/es-toolkit/dist/string/startCase.mjs +24 -13
- package/node_modules/es-toolkit/dist/string/trim.d.mts +6 -5
- package/node_modules/es-toolkit/dist/string/trim.d.ts +6 -5
- package/node_modules/es-toolkit/dist/string/trim.js +18 -12
- package/node_modules/es-toolkit/dist/string/trim.mjs +18 -8
- package/node_modules/es-toolkit/dist/string/trimEnd.d.mts +6 -5
- package/node_modules/es-toolkit/dist/string/trimEnd.d.ts +6 -5
- package/node_modules/es-toolkit/dist/string/trimEnd.js +28 -26
- package/node_modules/es-toolkit/dist/string/trimEnd.mjs +28 -22
- package/node_modules/es-toolkit/dist/string/trimStart.d.mts +6 -5
- package/node_modules/es-toolkit/dist/string/trimStart.d.ts +6 -5
- package/node_modules/es-toolkit/dist/string/trimStart.js +28 -23
- package/node_modules/es-toolkit/dist/string/trimStart.mjs +28 -19
- package/node_modules/es-toolkit/dist/string/unescape.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/unescape.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/unescape.js +21 -11
- package/node_modules/es-toolkit/dist/string/unescape.mjs +21 -7
- package/node_modules/es-toolkit/dist/string/upperCase.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/upperCase.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/upperCase.js +24 -16
- package/node_modules/es-toolkit/dist/string/upperCase.mjs +24 -12
- package/node_modules/es-toolkit/dist/string/upperFirst.d.mts +5 -4
- package/node_modules/es-toolkit/dist/string/upperFirst.d.ts +5 -4
- package/node_modules/es-toolkit/dist/string/upperFirst.js +14 -6
- package/node_modules/es-toolkit/dist/string/upperFirst.mjs +14 -2
- package/node_modules/es-toolkit/dist/string/words.d.mts +24 -5
- package/node_modules/es-toolkit/dist/string/words.d.ts +24 -5
- package/node_modules/es-toolkit/dist/string/words.js +37 -7
- package/node_modules/es-toolkit/dist/string/words.mjs +38 -3
- package/node_modules/es-toolkit/dist/util/attempt.d.mts +5 -4
- package/node_modules/es-toolkit/dist/util/attempt.d.ts +5 -4
- package/node_modules/es-toolkit/dist/util/attempt.js +46 -11
- package/node_modules/es-toolkit/dist/util/attempt.mjs +46 -7
- package/node_modules/es-toolkit/dist/util/attemptAsync.d.mts +5 -4
- package/node_modules/es-toolkit/dist/util/attemptAsync.d.ts +5 -4
- package/node_modules/es-toolkit/dist/util/attemptAsync.js +39 -12
- package/node_modules/es-toolkit/dist/util/attemptAsync.mjs +39 -8
- package/node_modules/es-toolkit/dist/util/index.d.mts +4 -3
- package/node_modules/es-toolkit/dist/util/index.d.ts +4 -3
- package/node_modules/es-toolkit/dist/util/index.js +8 -14
- package/node_modules/es-toolkit/dist/util/index.mjs +4 -3
- package/node_modules/es-toolkit/dist/util/invariant.d.mts +9 -8
- package/node_modules/es-toolkit/dist/util/invariant.d.ts +9 -8
- package/node_modules/es-toolkit/dist/util/invariant.js +29 -12
- package/node_modules/es-toolkit/dist/util/invariant.mjs +29 -8
- package/node_modules/es-toolkit/fp.d.ts +1 -0
- package/node_modules/es-toolkit/fp.js +1 -0
- package/node_modules/es-toolkit/package.json +67 -15
- package/node_modules/es-toolkit/server.d.ts +1 -0
- package/node_modules/es-toolkit/server.js +1 -0
- package/node_modules/fs-ext/.eslintrc +53 -0
- package/node_modules/fs-ext/.github/workflows/node.js.yml +31 -0
- package/node_modules/fs-ext/.travis.yml +25 -0
- package/node_modules/fs-ext/LICENSE.txt +18 -0
- package/node_modules/fs-ext/README.md +130 -0
- package/node_modules/fs-ext/appveyor.yml +20 -0
- package/node_modules/fs-ext/binding.gyp +11 -0
- package/node_modules/fs-ext/example.js +57 -0
- package/node_modules/fs-ext/fs-ext.cc +622 -0
- package/node_modules/fs-ext/fs-ext.js +131 -0
- package/node_modules/fs-ext/package.json +42 -0
- package/node_modules/fs-ext/run_tests.js +17 -0
- package/node_modules/fs-ext/tests/test-fs-fcntl.js +350 -0
- package/node_modules/fs-ext/tests/test-fs-flock.js +452 -0
- package/node_modules/fs-ext/tests/test-fs-flock_stress.js +239 -0
- package/node_modules/fs-ext/tests/test-fs-seek.js +607 -0
- package/node_modules/fs-ext/tests/test-fs-seek_stress.js +313 -0
- package/node_modules/fs-ext/tests/test-fs-statvfs.js +15 -0
- package/node_modules/fs-ext/tests/worker-test.js +56 -0
- package/node_modules/fs-ext/wscript +15 -0
- package/node_modules/graphql/error/GraphQLError.d.ts +151 -15
- package/node_modules/graphql/error/GraphQLError.js +143 -12
- package/node_modules/graphql/error/GraphQLError.mjs +143 -12
- package/node_modules/graphql/error/index.d.ts +6 -0
- package/node_modules/graphql/error/index.mjs +6 -0
- package/node_modules/graphql/error/locatedError.d.ts +20 -0
- package/node_modules/graphql/error/locatedError.js +21 -0
- package/node_modules/graphql/error/locatedError.mjs +20 -0
- package/node_modules/graphql/error/syntaxError.d.ts +15 -0
- package/node_modules/graphql/error/syntaxError.js +16 -0
- package/node_modules/graphql/error/syntaxError.mjs +15 -0
- package/node_modules/graphql/execution/collectFields.js +6 -0
- package/node_modules/graphql/execution/collectFields.mjs +6 -0
- package/node_modules/graphql/execution/execute.d.ts +222 -10
- package/node_modules/graphql/execution/execute.js +269 -28
- package/node_modules/graphql/execution/execute.mjs +268 -28
- package/node_modules/graphql/execution/index.d.ts +6 -0
- package/node_modules/graphql/execution/index.mjs +6 -0
- package/node_modules/graphql/execution/mapAsyncIterator.d.ts +2 -0
- package/node_modules/graphql/execution/mapAsyncIterator.js +2 -0
- package/node_modules/graphql/execution/mapAsyncIterator.mjs +2 -0
- package/node_modules/graphql/execution/subscribe.d.ts +195 -5
- package/node_modules/graphql/execution/subscribe.js +155 -11
- package/node_modules/graphql/execution/subscribe.mjs +155 -11
- package/node_modules/graphql/execution/values.d.ts +167 -10
- package/node_modules/graphql/execution/values.js +153 -9
- package/node_modules/graphql/execution/values.mjs +152 -9
- package/node_modules/graphql/graphql.d.ts +163 -41
- package/node_modules/graphql/graphql.js +126 -4
- package/node_modules/graphql/graphql.mjs +131 -41
- package/node_modules/graphql/index.d.ts +12 -17
- package/node_modules/graphql/index.mjs +13 -19
- package/node_modules/graphql/jsutils/Maybe.d.ts +5 -1
- package/node_modules/graphql/jsutils/ObjMap.d.ts +4 -0
- package/node_modules/graphql/jsutils/Path.d.ts +30 -0
- package/node_modules/graphql/jsutils/Path.js +29 -0
- package/node_modules/graphql/jsutils/Path.mjs +29 -0
- package/node_modules/graphql/jsutils/PromiseOrValue.d.ts +1 -0
- package/node_modules/graphql/jsutils/devAssert.d.ts +1 -0
- package/node_modules/graphql/jsutils/devAssert.js +1 -0
- package/node_modules/graphql/jsutils/devAssert.mjs +1 -0
- package/node_modules/graphql/jsutils/didYouMean.d.ts +4 -1
- package/node_modules/graphql/jsutils/didYouMean.js +4 -1
- package/node_modules/graphql/jsutils/didYouMean.mjs +4 -1
- package/node_modules/graphql/jsutils/groupBy.d.ts +2 -0
- package/node_modules/graphql/jsutils/groupBy.js +2 -0
- package/node_modules/graphql/jsutils/groupBy.mjs +2 -0
- package/node_modules/graphql/jsutils/identityFunc.d.ts +2 -0
- package/node_modules/graphql/jsutils/identityFunc.js +2 -0
- package/node_modules/graphql/jsutils/identityFunc.mjs +2 -0
- package/node_modules/graphql/jsutils/inspect.d.ts +2 -0
- package/node_modules/graphql/jsutils/inspect.js +2 -0
- package/node_modules/graphql/jsutils/inspect.mjs +2 -0
- package/node_modules/graphql/jsutils/instanceOf.d.ts +2 -0
- package/node_modules/graphql/jsutils/instanceOf.js +2 -0
- package/node_modules/graphql/jsutils/instanceOf.mjs +2 -0
- package/node_modules/graphql/jsutils/invariant.d.ts +1 -0
- package/node_modules/graphql/jsutils/invariant.js +1 -0
- package/node_modules/graphql/jsutils/invariant.mjs +1 -0
- package/node_modules/graphql/jsutils/isAsyncIterable.d.ts +2 -0
- package/node_modules/graphql/jsutils/isAsyncIterable.js +2 -0
- package/node_modules/graphql/jsutils/isAsyncIterable.mjs +2 -0
- package/node_modules/graphql/jsutils/isIterableObject.d.ts +6 -5
- package/node_modules/graphql/jsutils/isIterableObject.js +6 -5
- package/node_modules/graphql/jsutils/isIterableObject.mjs +6 -5
- package/node_modules/graphql/jsutils/isObjectLike.d.ts +2 -0
- package/node_modules/graphql/jsutils/isObjectLike.js +2 -0
- package/node_modules/graphql/jsutils/isObjectLike.mjs +2 -0
- package/node_modules/graphql/jsutils/isPromise.d.ts +2 -0
- package/node_modules/graphql/jsutils/isPromise.js +2 -0
- package/node_modules/graphql/jsutils/isPromise.mjs +2 -0
- package/node_modules/graphql/jsutils/keyMap.d.ts +7 -14
- package/node_modules/graphql/jsutils/keyMap.js +7 -14
- package/node_modules/graphql/jsutils/keyMap.mjs +7 -14
- package/node_modules/graphql/jsutils/keyValMap.d.ts +9 -6
- package/node_modules/graphql/jsutils/keyValMap.js +9 -6
- package/node_modules/graphql/jsutils/keyValMap.mjs +9 -6
- package/node_modules/graphql/jsutils/mapValue.d.ts +2 -0
- package/node_modules/graphql/jsutils/mapValue.js +2 -0
- package/node_modules/graphql/jsutils/mapValue.mjs +2 -0
- package/node_modules/graphql/jsutils/memoize3.d.ts +2 -0
- package/node_modules/graphql/jsutils/memoize3.js +2 -0
- package/node_modules/graphql/jsutils/memoize3.mjs +2 -0
- package/node_modules/graphql/jsutils/naturalCompare.d.ts +2 -0
- package/node_modules/graphql/jsutils/naturalCompare.js +2 -0
- package/node_modules/graphql/jsutils/naturalCompare.mjs +2 -0
- package/node_modules/graphql/jsutils/printPathArray.d.ts +2 -0
- package/node_modules/graphql/jsutils/printPathArray.js +2 -0
- package/node_modules/graphql/jsutils/printPathArray.mjs +2 -0
- package/node_modules/graphql/jsutils/promiseForObject.d.ts +2 -0
- package/node_modules/graphql/jsutils/promiseForObject.js +2 -0
- package/node_modules/graphql/jsutils/promiseForObject.mjs +2 -0
- package/node_modules/graphql/jsutils/promiseReduce.d.ts +2 -0
- package/node_modules/graphql/jsutils/promiseReduce.js +2 -0
- package/node_modules/graphql/jsutils/promiseReduce.mjs +2 -0
- package/node_modules/graphql/jsutils/suggestionList.d.ts +2 -0
- package/node_modules/graphql/jsutils/suggestionList.js +4 -0
- package/node_modules/graphql/jsutils/suggestionList.mjs +4 -0
- package/node_modules/graphql/jsutils/toError.d.ts +2 -0
- package/node_modules/graphql/jsutils/toError.js +2 -0
- package/node_modules/graphql/jsutils/toError.mjs +2 -0
- package/node_modules/graphql/jsutils/toObjMap.d.ts +1 -0
- package/node_modules/graphql/jsutils/toObjMap.js +1 -0
- package/node_modules/graphql/jsutils/toObjMap.mjs +1 -0
- package/node_modules/graphql/language/ast.d.ts +422 -55
- package/node_modules/graphql/language/ast.js +103 -39
- package/node_modules/graphql/language/ast.mjs +103 -39
- package/node_modules/graphql/language/blockString.d.ts +1 -3
- package/node_modules/graphql/language/blockString.js +1 -3
- package/node_modules/graphql/language/blockString.mjs +1 -3
- package/node_modules/graphql/language/directiveLocation.d.ts +29 -8
- package/node_modules/graphql/language/directiveLocation.js +10 -6
- package/node_modules/graphql/language/directiveLocation.mjs +10 -6
- package/node_modules/graphql/language/index.d.ts +7 -0
- package/node_modules/graphql/language/index.mjs +6 -0
- package/node_modules/graphql/language/kinds.d.ts +58 -18
- package/node_modules/graphql/language/kinds.js +10 -6
- package/node_modules/graphql/language/kinds.mjs +10 -6
- package/node_modules/graphql/language/lexer.d.ts +47 -14
- package/node_modules/graphql/language/lexer.js +71 -13
- package/node_modules/graphql/language/lexer.mjs +70 -13
- package/node_modules/graphql/language/location.d.ts +16 -3
- package/node_modules/graphql/language/location.js +14 -3
- package/node_modules/graphql/language/location.mjs +14 -3
- package/node_modules/graphql/language/parser.d.ts +248 -11
- package/node_modules/graphql/language/parser.js +257 -0
- package/node_modules/graphql/language/parser.mjs +257 -3
- package/node_modules/graphql/language/predicates.d.ts +169 -0
- package/node_modules/graphql/language/predicates.js +173 -1
- package/node_modules/graphql/language/predicates.mjs +185 -1
- package/node_modules/graphql/language/printLocation.d.ts +28 -0
- package/node_modules/graphql/language/printLocation.js +29 -0
- package/node_modules/graphql/language/printLocation.mjs +28 -0
- package/node_modules/graphql/language/printString.d.ts +2 -0
- package/node_modules/graphql/language/printString.js +5 -1
- package/node_modules/graphql/language/printString.mjs +5 -1
- package/node_modules/graphql/language/printer.d.ts +12 -0
- package/node_modules/graphql/language/printer.js +32 -1
- package/node_modules/graphql/language/printer.mjs +31 -1
- package/node_modules/graphql/language/schemaCoordinateLexer.d.ts +8 -6
- package/node_modules/graphql/language/schemaCoordinateLexer.js +10 -6
- package/node_modules/graphql/language/schemaCoordinateLexer.mjs +10 -6
- package/node_modules/graphql/language/source.d.ts +28 -0
- package/node_modules/graphql/language/source.js +32 -0
- package/node_modules/graphql/language/source.mjs +31 -0
- package/node_modules/graphql/language/tokenKind.d.ts +30 -3
- package/node_modules/graphql/language/tokenKind.js +8 -3
- package/node_modules/graphql/language/tokenKind.mjs +8 -3
- package/node_modules/graphql/language/visitor.d.ts +200 -72
- package/node_modules/graphql/language/visitor.js +122 -50
- package/node_modules/graphql/language/visitor.mjs +122 -54
- package/node_modules/graphql/package.json +1 -1
- package/node_modules/graphql/subscription/index.d.ts +9 -3
- package/node_modules/graphql/subscription/index.mjs +9 -3
- package/node_modules/graphql/type/assertName.d.ts +18 -1
- package/node_modules/graphql/type/assertName.js +19 -1
- package/node_modules/graphql/type/assertName.mjs +18 -1
- package/node_modules/graphql/type/definition.d.ts +2540 -79
- package/node_modules/graphql/type/definition.js +2214 -61
- package/node_modules/graphql/type/definition.mjs +2241 -60
- package/node_modules/graphql/type/directives.d.ts +202 -19
- package/node_modules/graphql/type/directives.js +206 -20
- package/node_modules/graphql/type/directives.mjs +206 -20
- package/node_modules/graphql/type/index.d.ts +6 -0
- package/node_modules/graphql/type/index.mjs +6 -0
- package/node_modules/graphql/type/introspection.d.ts +36 -0
- package/node_modules/graphql/type/introspection.js +57 -1
- package/node_modules/graphql/type/introspection.mjs +65 -1
- package/node_modules/graphql/type/scalars.d.ts +29 -2
- package/node_modules/graphql/type/scalars.js +37 -2
- package/node_modules/graphql/type/scalars.mjs +36 -2
- package/node_modules/graphql/type/schema.d.ts +490 -28
- package/node_modules/graphql/type/schema.js +484 -26
- package/node_modules/graphql/type/schema.mjs +484 -26
- package/node_modules/graphql/type/validate.d.ts +31 -0
- package/node_modules/graphql/type/validate.js +32 -0
- package/node_modules/graphql/type/validate.mjs +31 -0
- package/node_modules/graphql/utilities/TypeInfo.d.ts +441 -1
- package/node_modules/graphql/utilities/TypeInfo.js +444 -1
- package/node_modules/graphql/utilities/TypeInfo.mjs +443 -1
- package/node_modules/graphql/utilities/assertValidName.d.ts +27 -2
- package/node_modules/graphql/utilities/assertValidName.js +28 -2
- package/node_modules/graphql/utilities/assertValidName.mjs +27 -2
- package/node_modules/graphql/utilities/astFromValue.d.ts +33 -3
- package/node_modules/graphql/utilities/astFromValue.js +36 -3
- package/node_modules/graphql/utilities/astFromValue.mjs +35 -3
- package/node_modules/graphql/utilities/buildASTSchema.d.ts +65 -6
- package/node_modules/graphql/utilities/buildASTSchema.js +69 -6
- package/node_modules/graphql/utilities/buildASTSchema.mjs +69 -6
- package/node_modules/graphql/utilities/buildClientSchema.d.ts +15 -0
- package/node_modules/graphql/utilities/buildClientSchema.js +17 -0
- package/node_modules/graphql/utilities/buildClientSchema.mjs +16 -0
- package/node_modules/graphql/utilities/coerceInputValue.d.ts +46 -0
- package/node_modules/graphql/utilities/coerceInputValue.js +49 -2
- package/node_modules/graphql/utilities/coerceInputValue.mjs +48 -2
- package/node_modules/graphql/utilities/concatAST.d.ts +12 -0
- package/node_modules/graphql/utilities/concatAST.js +13 -0
- package/node_modules/graphql/utilities/concatAST.mjs +12 -0
- package/node_modules/graphql/utilities/extendSchema.d.ts +56 -3
- package/node_modules/graphql/utilities/extendSchema.js +121 -6
- package/node_modules/graphql/utilities/extendSchema.mjs +120 -6
- package/node_modules/graphql/utilities/findBreakingChanges.d.ts +95 -0
- package/node_modules/graphql/utilities/findBreakingChanges.js +68 -0
- package/node_modules/graphql/utilities/findBreakingChanges.mjs +70 -0
- package/node_modules/graphql/utilities/getIntrospectionQuery.d.ts +148 -0
- package/node_modules/graphql/utilities/getIntrospectionQuery.js +72 -38
- package/node_modules/graphql/utilities/getIntrospectionQuery.mjs +72 -38
- package/node_modules/graphql/utilities/getOperationAST.d.ts +15 -0
- package/node_modules/graphql/utilities/getOperationAST.js +16 -0
- package/node_modules/graphql/utilities/getOperationAST.mjs +15 -0
- package/node_modules/graphql/utilities/getOperationRootType.d.ts +18 -1
- package/node_modules/graphql/utilities/getOperationRootType.js +19 -1
- package/node_modules/graphql/utilities/getOperationRootType.mjs +18 -1
- package/node_modules/graphql/utilities/index.d.ts +7 -0
- package/node_modules/graphql/utilities/index.mjs +7 -0
- package/node_modules/graphql/utilities/introspectionFromSchema.d.ts +54 -0
- package/node_modules/graphql/utilities/introspectionFromSchema.js +56 -0
- package/node_modules/graphql/utilities/introspectionFromSchema.mjs +55 -0
- package/node_modules/graphql/utilities/lexicographicSortSchema.d.ts +35 -0
- package/node_modules/graphql/utilities/lexicographicSortSchema.js +36 -0
- package/node_modules/graphql/utilities/lexicographicSortSchema.mjs +35 -0
- package/node_modules/graphql/utilities/printSchema.d.ts +63 -0
- package/node_modules/graphql/utilities/printSchema.js +67 -0
- package/node_modules/graphql/utilities/printSchema.mjs +68 -0
- package/node_modules/graphql/utilities/resolveSchemaCoordinate.d.ts +62 -0
- package/node_modules/graphql/utilities/resolveSchemaCoordinate.js +64 -0
- package/node_modules/graphql/utilities/resolveSchemaCoordinate.mjs +63 -0
- package/node_modules/graphql/utilities/separateOperations.d.ts +30 -0
- package/node_modules/graphql/utilities/separateOperations.js +31 -0
- package/node_modules/graphql/utilities/separateOperations.mjs +30 -0
- package/node_modules/graphql/utilities/stripIgnoredCharacters.d.ts +13 -6
- package/node_modules/graphql/utilities/stripIgnoredCharacters.js +16 -6
- package/node_modules/graphql/utilities/stripIgnoredCharacters.mjs +15 -6
- package/node_modules/graphql/utilities/typeComparators.d.ts +84 -0
- package/node_modules/graphql/utilities/typeComparators.js +85 -0
- package/node_modules/graphql/utilities/typeComparators.mjs +84 -0
- package/node_modules/graphql/utilities/typeFromAST.d.ts +86 -0
- package/node_modules/graphql/utilities/typeFromAST.js +3 -0
- package/node_modules/graphql/utilities/typeFromAST.mjs +3 -0
- package/node_modules/graphql/utilities/typedQueryDocumentNode.d.ts +4 -0
- package/node_modules/graphql/utilities/valueFromAST.d.ts +38 -0
- package/node_modules/graphql/utilities/valueFromAST.js +51 -2
- package/node_modules/graphql/utilities/valueFromAST.mjs +50 -2
- package/node_modules/graphql/utilities/valueFromASTUntyped.d.ts +15 -2
- package/node_modules/graphql/utilities/valueFromASTUntyped.js +16 -2
- package/node_modules/graphql/utilities/valueFromASTUntyped.mjs +15 -2
- package/node_modules/graphql/validation/ValidationContext.d.ts +399 -0
- package/node_modules/graphql/validation/ValidationContext.js +400 -0
- package/node_modules/graphql/validation/ValidationContext.mjs +401 -0
- package/node_modules/graphql/validation/index.d.ts +6 -0
- package/node_modules/graphql/validation/index.mjs +6 -0
- package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.js +29 -0
- package/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.js +33 -0
- package/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.js +29 -0
- package/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts +29 -3
- package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.js +30 -3
- package/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs +29 -3
- package/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/KnownDirectivesRule.js +33 -0
- package/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/KnownTypeNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.js +29 -0
- package/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.js +22 -0
- package/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.d.ts +31 -0
- package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.js +33 -0
- package/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.mjs +34 -0
- package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.js +29 -0
- package/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.js +29 -0
- package/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.js +29 -0
- package/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts +29 -0
- package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.js +30 -0
- package/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs +29 -0
- package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts +33 -0
- package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.js +45 -6
- package/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs +45 -6
- package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts +36 -0
- package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.js +37 -0
- package/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs +36 -0
- package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.js +22 -0
- package/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts +29 -3
- package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.js +30 -3
- package/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs +29 -3
- package/node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/ScalarLeafsRule.js +29 -0
- package/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts +33 -0
- package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.js +34 -0
- package/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs +33 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.js +41 -0
- package/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs +40 -0
- package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts +32 -0
- package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.js +33 -0
- package/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts +21 -0
- package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.js +22 -0
- package/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs +21 -0
- package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.js +29 -0
- package/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs +28 -0
- package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.js +36 -11
- package/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs +35 -11
- package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts +32 -0
- package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.js +33 -0
- package/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs +32 -0
- package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.js +35 -1
- package/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs +34 -1
- package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts +41 -0
- package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.js +42 -0
- package/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs +41 -0
- package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts +28 -0
- package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.js +29 -0
- package/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs +28 -0
- package/node_modules/graphql/validation/specifiedRules.d.ts +2 -3
- package/node_modules/graphql/validation/specifiedRules.js +2 -3
- package/node_modules/graphql/validation/specifiedRules.mjs +2 -3
- package/node_modules/graphql/validation/validate.d.ts +70 -9
- package/node_modules/graphql/validation/validate.js +74 -6
- package/node_modules/graphql/validation/validate.mjs +76 -9
- package/node_modules/graphql/version.d.ts +3 -6
- package/node_modules/graphql/version.js +7 -9
- package/node_modules/graphql/version.mjs +6 -9
- package/node_modules/hasown/CHANGELOG.md +18 -0
- package/node_modules/hasown/eslint.config.mjs +6 -0
- package/node_modules/hasown/package.json +13 -14
- package/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
- package/node_modules/iconv-lite/encodings/utf32.js +10 -3
- package/node_modules/iconv-lite/lib/index.d.ts +68 -70
- package/node_modules/iconv-lite/lib/index.js +39 -40
- package/node_modules/iconv-lite/package.json +7 -2
- package/node_modules/iconv-lite/types/encodings.d.ts +2 -0
- package/node_modules/ini/README.md +145 -67
- package/node_modules/ini/package.json +28 -16
- package/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
- package/node_modules/is-fullwidth-code-point/index.js +8 -46
- package/node_modules/is-fullwidth-code-point/license +1 -1
- package/node_modules/is-fullwidth-code-point/package.json +19 -8
- package/node_modules/is-fullwidth-code-point/readme.md +4 -12
- package/node_modules/isexe/README.md +52 -23
- package/node_modules/isexe/package.json +65 -18
- package/node_modules/media-typer/README.md +15 -14
- package/node_modules/media-typer/index.js +0 -8
- package/node_modules/media-typer/package.json +16 -12
- package/node_modules/nan/.github/workflows/ci.yml +46 -0
- package/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/node_modules/nan/CHANGELOG.md +605 -0
- package/node_modules/nan/CMakeLists.txt +138 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +457 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +689 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +81 -0
- package/node_modules/nan/doc/v8_internals.md +211 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +3202 -0
- package/node_modules/nan/nan_callbacks.h +141 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +730 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +528 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +446 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +97 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +453 -0
- package/node_modules/nan/package.json +38 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/node_modules/node-abi/abi_registry.json +17 -3
- package/node_modules/node-abi/package.json +1 -1
- package/node_modules/path-to-regexp/Readme.md +3 -3
- package/node_modules/path-to-regexp/dist/index.d.ts +3 -0
- package/node_modules/path-to-regexp/dist/index.js +215 -193
- package/node_modules/path-to-regexp/dist/index.js.map +1 -1
- package/node_modules/path-to-regexp/package.json +2 -2
- package/node_modules/qs/.editorconfig +1 -1
- package/node_modules/qs/.github/SECURITY.md +11 -0
- package/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/node_modules/qs/CHANGELOG.md +211 -0
- package/node_modules/qs/README.md +30 -5
- package/node_modules/qs/dist/qs.js +26 -26
- package/node_modules/qs/eslint.config.mjs +57 -0
- package/node_modules/qs/lib/parse.js +146 -60
- package/node_modules/qs/lib/stringify.js +11 -4
- package/node_modules/qs/lib/utils.js +129 -16
- package/node_modules/qs/package.json +14 -12
- package/node_modules/qs/test/parse.js +670 -13
- package/node_modules/qs/test/stringify.js +145 -3
- package/node_modules/qs/test/utils.js +367 -3
- package/node_modules/range-parser/README.md +13 -12
- package/node_modules/range-parser/index.js +27 -8
- package/node_modules/range-parser/package.json +12 -8
- package/node_modules/rc/node_modules/ini/README.md +102 -0
- package/node_modules/rc/node_modules/ini/package.json +33 -0
- package/node_modules/react/cjs/react.development.js +1284 -0
- package/node_modules/react/cjs/react.production.js +542 -0
- package/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/node_modules/react/package.json +51 -0
- package/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +648 -0
- package/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +461 -0
- package/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +1215 -0
- package/node_modules/react-devtools-core/node_modules/ws/package.json +56 -0
- package/node_modules/semver/README.md +19 -4
- package/node_modules/semver/bin/semver.js +14 -10
- package/node_modules/semver/classes/range.js +24 -4
- package/node_modules/semver/classes/semver.js +19 -2
- package/node_modules/semver/functions/truncate.js +48 -0
- package/node_modules/semver/index.js +2 -0
- package/node_modules/semver/internal/re.js +1 -1
- package/node_modules/semver/package.json +4 -4
- package/node_modules/semver/range.bnf +5 -4
- package/node_modules/semver/ranges/subset.js +2 -2
- package/node_modules/send/package.json +11 -8
- package/node_modules/serve-static/README.md +23 -23
- package/node_modules/serve-static/package.json +6 -3
- package/node_modules/shell-quote/README.md +62 -17
- package/node_modules/shell-quote/package.json +4 -4
- package/node_modules/shell-quote/parse.d.ts +2 -0
- package/node_modules/shell-quote/parse.js +77 -8
- package/node_modules/shell-quote/quote.js +1 -1
- package/node_modules/shell-quote/test/parse.js +82 -0
- package/node_modules/shell-quote/test/quote.js +18 -1
- package/node_modules/side-channel/CHANGELOG.md +10 -0
- package/node_modules/side-channel/README.md +1 -1
- package/node_modules/side-channel/index.js +5 -2
- package/node_modules/side-channel/package.json +10 -10
- package/node_modules/side-channel/test/index.js +16 -0
- package/node_modules/side-channel-list/CHANGELOG.md +25 -4
- package/node_modules/side-channel-list/index.js +1 -3
- package/node_modules/side-channel-list/package.json +8 -8
- package/node_modules/side-channel-list/test/index.js +50 -0
- package/node_modules/string-width/index.d.ts +13 -3
- package/node_modules/string-width/index.js +182 -29
- package/node_modules/string-width/package.json +16 -10
- package/node_modules/string-width/readme.md +15 -16
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/string-width-cjs/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/tar-fs/index.js +39 -10
- package/node_modules/tar-fs/package.json +6 -1
- package/node_modules/tar-fs/test/index.js +111 -0
- package/node_modules/type-is/index.js +8 -18
- package/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
- package/node_modules/type-is/node_modules/content-type/README.md +69 -0
- package/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
- package/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
- package/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
- package/node_modules/type-is/node_modules/content-type/package.json +52 -0
- package/node_modules/type-is/package.json +9 -5
- package/node_modules/uuid/dist/v35.js +3 -0
- package/node_modules/uuid/dist/v6.js +3 -0
- package/node_modules/uuid/dist-node/v35.js +3 -0
- package/node_modules/uuid/dist-node/v6.js +3 -0
- package/node_modules/uuid/package.json +1 -1
- package/node_modules/which/README.md +13 -16
- package/node_modules/which/package.json +34 -20
- package/node_modules/wrap-ansi/index.d.ts +2 -2
- package/node_modules/wrap-ansi/index.js +293 -39
- package/node_modules/wrap-ansi/package.json +11 -11
- package/node_modules/wrap-ansi/readme.md +8 -22
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/ws/index.js +15 -6
- package/node_modules/ws/lib/constants.js +1 -0
- package/node_modules/ws/lib/permessage-deflate.js +6 -6
- package/node_modules/ws/lib/receiver.js +37 -0
- package/node_modules/ws/lib/sender.js +6 -1
- package/node_modules/ws/lib/websocket-server.js +18 -6
- package/node_modules/ws/lib/websocket.js +33 -14
- package/node_modules/ws/package.json +8 -3
- package/node_modules/ws/wrapper.mjs +14 -1
- package/package.json +6 -6
- package/bin/codevibe-codex +0 -828
- package/node_modules/@npmcli/git/node_modules/ini/README.md +0 -180
- package/node_modules/@npmcli/git/node_modules/ini/package.json +0 -45
- package/node_modules/@npmcli/git/node_modules/isexe/README.md +0 -80
- package/node_modules/@npmcli/git/node_modules/isexe/package.json +0 -78
- package/node_modules/@npmcli/git/node_modules/which/README.md +0 -51
- package/node_modules/@npmcli/git/node_modules/which/package.json +0 -57
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/LICENSE.md +0 -55
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/README.md +0 -80
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.d.ts +0 -14
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.js +0 -56
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.min.js +0 -2
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/index.min.js.map +0 -7
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.d.ts +0 -32
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.js +0 -3
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/options.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.js +0 -67
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/posix.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.js +0 -63
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/commonjs/win32.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.d.ts +0 -14
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.js +0 -16
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.min.js +0 -2
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/index.min.js.map +0 -7
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.d.ts +0 -32
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.js +0 -2
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/options.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.js +0 -62
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/posix.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.d.ts +0 -18
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.d.ts.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.js +0 -58
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/dist/esm/win32.js.map +0 -1
- package/node_modules/@npmcli/promise-spawn/node_modules/isexe/package.json +0 -78
- package/node_modules/@npmcli/promise-spawn/node_modules/which/README.md +0 -51
- package/node_modules/@npmcli/promise-spawn/node_modules/which/bin/which.js +0 -52
- package/node_modules/@npmcli/promise-spawn/node_modules/which/lib/index.js +0 -111
- package/node_modules/@npmcli/promise-spawn/node_modules/which/package.json +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/orchestration-cli.d.ts +0 -12
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-bootstrap.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-failure-recourse.d.ts +0 -23
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-save.d.ts +0 -47
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-seat-picker.d.ts +0 -72
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-telemetry.d.ts +0 -54
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-test-agents.d.ts +0 -108
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-wizard.d.ts +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cohort-flag.d.ts +0 -16
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/gemini.d.ts +0 -109
- package/node_modules/@quantiya/codevibe-core/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/@quantiya/codevibe-core/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/@quantiya/codevibe-core/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/@quantiya/codevibe-core/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.js +0 -194
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/package.json +0 -52
- package/node_modules/@quantiya/codevibe-core/node_modules/is-fullwidth-code-point/index.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/is-fullwidth-code-point/package.json +0 -53
- package/node_modules/@quantiya/codevibe-core/node_modules/is-fullwidth-code-point/readme.md +0 -31
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.development.js +0 -1284
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.production.js +0 -542
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.development.js +0 -848
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.production.js +0 -423
- package/node_modules/@quantiya/codevibe-core/node_modules/react/package.json +0 -51
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +0 -664
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +0 -461
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +0 -1215
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/package.json +0 -56
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.js +0 -203
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/package.json +0 -65
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/readme.md +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/index.js +0 -9
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/wrapper.mjs +0 -10
- package/node_modules/@quantiya/codevibe-core/node_modules/widest-line/license +0 -9
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.d.ts +0 -41
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.js +0 -468
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/license +0 -9
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/package.json +0 -69
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/readme.md +0 -77
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/LICENSE +0 -20
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/README.md +0 -548
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/browser.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/index.js +0 -22
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/buffer-util.js +0 -131
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/constants.js +0 -19
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/event-target.js +0 -292
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/extension.js +0 -203
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/limiter.js +0 -55
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/permessage-deflate.js +0 -528
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/receiver.js +0 -760
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/sender.js +0 -607
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/stream.js +0 -161
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/subprotocol.js +0 -62
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/validation.js +0 -152
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket-server.js +0 -562
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket.js +0 -1407
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/package.json +0 -70
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/wrapper.mjs +0 -21
- package/node_modules/content-disposition/HISTORY.md +0 -72
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.d.mts +0 -3
- package/node_modules/es-toolkit/dist/compat/_internal/Equals.d.d.ts +0 -3
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.d.mts +0 -5
- package/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.d.ts +0 -5
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.d.mts +0 -6
- package/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.d.ts +0 -6
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.mts +0 -6
- package/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.ts +0 -6
- package/node_modules/gradient-string/node_modules/chalk/license +0 -9
- package/node_modules/gradient-string/node_modules/chalk/package.json +0 -83
- package/node_modules/gradient-string/node_modules/chalk/readme.md +0 -297
- package/node_modules/gradient-string/node_modules/chalk/source/index.d.ts +0 -325
- package/node_modules/gradient-string/node_modules/chalk/source/index.js +0 -225
- package/node_modules/gradient-string/node_modules/chalk/source/utilities.js +0 -33
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/browser.js +0 -34
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
- package/node_modules/gradient-string/node_modules/chalk/source/vendor/supports-color/index.js +0 -190
- package/node_modules/hasown/.eslintrc +0 -5
- package/node_modules/hosted-git-info/node_modules/lru-cache/LICENSE +0 -15
- package/node_modules/hosted-git-info/node_modules/lru-cache/README.md +0 -331
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.d.ts +0 -1277
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.d.ts.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.js +0 -1546
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.js.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.min.js.map +0 -7
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.d.ts +0 -1277
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.d.ts.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.js +0 -1542
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.js.map +0 -1
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.min.js.map +0 -7
- package/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/package.json +0 -3
- package/node_modules/hosted-git-info/node_modules/lru-cache/package.json +0 -116
- package/node_modules/iconv-lite/Changelog.md +0 -241
- package/node_modules/ink-text-input/node_modules/chalk/license +0 -9
- package/node_modules/ink-text-input/node_modules/chalk/package.json +0 -83
- package/node_modules/ink-text-input/node_modules/chalk/readme.md +0 -297
- package/node_modules/ink-text-input/node_modules/chalk/source/index.d.ts +0 -325
- package/node_modules/ink-text-input/node_modules/chalk/source/index.js +0 -225
- package/node_modules/ink-text-input/node_modules/chalk/source/utilities.js +0 -33
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/browser.js +0 -34
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
- package/node_modules/ink-text-input/node_modules/chalk/source/vendor/supports-color/index.js +0 -190
- package/node_modules/isexe/LICENSE +0 -15
- package/node_modules/keytar/build/Release/keytar.node +0 -0
- package/node_modules/path-scurry/node_modules/lru-cache/LICENSE +0 -15
- package/node_modules/path-scurry/node_modules/lru-cache/README.md +0 -331
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts +0 -1277
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js +0 -1546
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js.map +0 -7
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts +0 -1277
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js +0 -1542
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js.map +0 -1
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js.map +0 -7
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/package.json +0 -3
- package/node_modules/path-scurry/node_modules/lru-cache/package.json +0 -116
- package/node_modules/qs/.eslintrc +0 -39
- package/node_modules/send/HISTORY.md +0 -580
- package/node_modules/serve-static/HISTORY.md +0 -516
- package/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +0 -73
- package/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +0 -6
- package/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +0 -6
- package/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +0 -23
- package/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +0 -6
- package/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +0 -50
- package/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +0 -6
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +0 -223
- package/node_modules/wrap-ansi/node_modules/ansi-styles/license +0 -9
- package/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +0 -73
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +0 -6
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +0 -6
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +0 -23
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +0 -6
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +0 -50
- package/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +0 -6
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/ansiCodes.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/ansiCodes.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/ansiCodes.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/consts.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/consts.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/consts.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/diff.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/diff.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/diff.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/index.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/reduce.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/reduce.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/reduce.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/styledChars.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/styledChars.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/styledChars.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/tokenize.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/tokenize.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/tokenize.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/undo.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/undo.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/build/undo.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/@alcalzone → @alcalzone}/ansi-tokenize/package.json +0 -0
- /package/node_modules/{string-width-cjs → @isaacs/cliui}/node_modules/emoji-regex/LICENSE-MIT.txt +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/RGI_Emoji.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/RGI_Emoji.js +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/RGI_Emoji.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/RGI_Emoji.js +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/index.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/es2015/text.d.ts +0 -0
- /package/node_modules/{emoji-regex → @isaacs/cliui/node_modules/emoji-regex}/text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → @isaacs/cliui/node_modules/string-width}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-styles → @isaacs/cliui/node_modules/wrap-ansi}/license +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{companion-mode/__tests__/detect-parallel.test.d.ts → appsync/__tests__/appsync-client-context-items.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts → appsync/__tests__/heartbeat-active.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-bootstrap.test.d.ts → appsync/__tests__/orphan-sweep-null-heartbeat.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-failure-recourse.test.d.ts → auth/__tests__/vendor-key-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-save.test.d.ts → companion-mode/__tests__/mode-selected-emit.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-seat-picker.test.d.ts → companion-mode/__tests__/private-launcher-detection.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-telemetry.test.d.ts → companion-mode/__tests__/private-launcher-path.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-test-agents.test.d.ts → credential-broker/__tests__/broker-c4.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-types.test.d.ts → credential-broker/__tests__/broker-streaming.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-wizard.test.d.ts → credential-broker/__tests__/chatgpt-config.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini-live-smoke.test.d.ts → credential-broker/__tests__/oauth-account-lock.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini.test.d.ts → credential-broker/__tests__/oauth-refresh.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/{node_modules/ink/build/devtools-window-polyfill.d.ts → dist/crypto/__tests__/encrypt-for-emit.test.d.ts} +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/base.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/base.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → ansi-escapes}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ansi-escapes → ansi-escapes}/readme.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → brace-expansion}/dist/commonjs/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → brace-expansion}/dist/esm/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → chalk}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/utilities.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/ansi-styles/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules → chalk/source/vendor}/ansi-styles/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/browser.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/browser.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/chalk → chalk}/source/vendor/supports-color/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/boxes.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-truncate → cli-boxes}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-boxes → cli-boxes}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-truncate → cli-truncate}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-fullwidth-code-point → cli-truncate}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/cli-truncate → cli-truncate}/readme.md +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/.npmignore +0 -0
- /package/node_modules/{@npmcli/git/node_modules/ini → cross-spawn/node_modules/isexe}/LICENSE +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/index.js +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/mode.js +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/test/basic.js +0 -0
- /package/node_modules/{isexe → cross-spawn/node_modules/isexe}/windows.js +0 -0
- /package/node_modules/{which → cross-spawn/node_modules/which}/CHANGELOG.md +0 -0
- /package/node_modules/{@npmcli/git → cross-spawn}/node_modules/which/LICENSE +0 -0
- /package/node_modules/{which → cross-spawn/node_modules/which}/bin/node-which +0 -0
- /package/node_modules/{which → cross-spawn/node_modules/which}/which.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/ini → ini}/lib/ini.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ansi-tokenizer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ansi-tokenizer.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ansi-tokenizer.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/colorize.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/colorize.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/colorize.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AccessibilityContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AccessibilityContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AccessibilityContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AnimationContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AnimationContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AnimationContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/App.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/App.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/App.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AppContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AppContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/AppContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/BackgroundContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/BackgroundContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/BackgroundContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Box.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Box.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Box.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/CursorContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/CursorContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/CursorContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorBoundary.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorBoundary.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorBoundary.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorOverview.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorOverview.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/ErrorOverview.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/FocusContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/FocusContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/FocusContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Newline.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Newline.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Newline.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Spacer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Spacer.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Spacer.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Static.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Static.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Static.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StderrContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StderrContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StderrContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdinContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdinContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdinContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdoutContext.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdoutContext.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/StdoutContext.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Text.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Text.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Transform.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Transform.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/components/Transform.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/cursor-helpers.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/cursor-helpers.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/cursor-helpers.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools-window-polyfill.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools-window-polyfill.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/devtools.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/dom.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/dom.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/dom.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/get-max-width.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/get-max-width.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/get-max-width.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-animation.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-animation.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-animation.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-app.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-app.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-app.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-box-metrics.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-box-metrics.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-box-metrics.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-cursor.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-cursor.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-cursor.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus-manager.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus-manager.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus-manager.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-focus.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-input.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-input.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-input.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-is-screen-reader-enabled.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-is-screen-reader-enabled.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-is-screen-reader-enabled.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-paste.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-paste.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-paste.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stderr.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stderr.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stderr.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdin.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdin.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdin.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdout.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdout.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-stdout.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-window-size.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-window-size.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/hooks/use-window-size.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/index.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ink.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ink.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/ink.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/input-parser.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/input-parser.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/input-parser.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/instances.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/instances.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/instances.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/kitty-keyboard.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/kitty-keyboard.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/kitty-keyboard.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/log-update.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/log-update.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/log-update.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-element.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-element.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-text.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/measure-text.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/output.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/output.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/output.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/parse-keypress.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/parse-keypress.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/parse-keypress.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/reconciler.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/reconciler.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/reconciler.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-background.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-background.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-background.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-border.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-border.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-border.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-node-to-output.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-node-to-output.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-node-to-output.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-to-string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-to-string.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render-to-string.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/render.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/renderer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/renderer.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/renderer.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/sanitize-ansi.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/sanitize-ansi.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/sanitize-ansi.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/squash-text-nodes.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/squash-text-nodes.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/squash-text-nodes.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/styles.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/styles.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/styles.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/utils.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/utils.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/utils.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/wrap-text.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/wrap-text.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/wrap-text.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/write-synchronized.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/write-synchronized.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/build/write-synchronized.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/LICENSE.txt +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core → ink}/node_modules/signal-exit/signals.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/ink → ink}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/cli.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/is-in-ci → is-in-ci}/readme.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/LICENSE.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/options.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → isexe}/dist/commonjs/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/posix.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/commonjs/win32.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/options.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → isexe}/dist/esm/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/posix.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/isexe → isexe}/dist/esm/win32.js.map +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/LICENSE.md +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/README.md +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/lib/index.js +0 -0
- /package/node_modules/{@npmcli/package-json/node_modules/json-parse-even-better-errors → json-parse-even-better-errors}/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/LICENSE +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/README.md +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/commonjs/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/promise-spawn/node_modules/isexe → lru-cache}/dist/commonjs/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.d.ts.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.js.map +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.min.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/dist/esm/index.min.js.map +0 -0
- /package/node_modules/{@npmcli/promise-spawn/node_modules/isexe → lru-cache}/dist/esm/package.json +0 -0
- /package/node_modules/{@npmcli/git/node_modules/lru-cache → lru-cache}/package.json +0 -0
- /package/node_modules/{@npmcli/promise-spawn/node_modules/which → rc/node_modules/ini}/LICENSE +0 -0
- /package/node_modules/{ini → rc/node_modules/ini}/ini.js +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/index.js +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/license +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/package.json +0 -0
- /package/node_modules/{strip-json-comments → rc/node_modules/strip-json-comments}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-compiler-runtime.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-compiler-runtime.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-compiler-runtime.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.react-server.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-dev-runtime.react-server.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.react-server.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/cjs/react-jsx-runtime.react-server.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/compiler-runtime.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-dev-runtime.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-dev-runtime.react-server.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-runtime.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/jsx-runtime.react-server.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react → react}/react.react-server.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/backend.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/backend.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/backend.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/importFile.worker.worker.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/importFile.worker.worker.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseHookNames.chunk.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseHookNames.chunk.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseSourceAndMetadata.worker.worker.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/parseSourceAndMetadata.worker.worker.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/standalone.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/standalone.js.LICENSE.txt +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/dist/standalone.js.map +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/browser.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/buffer-util.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/constants.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/event-target.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/extension.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/limiter.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/permessage-deflate.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/sender.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/stream.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/node_modules/ws/lib/validation.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-devtools-core → react-devtools-core}/standalone.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-constants.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-constants.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-reflection.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler-reflection.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/cjs/react-reconciler.profiling.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/constants.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/react-reconciler → react-reconciler}/reflection.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/LICENSE +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/README.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_mock.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_mock.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_post_task.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler-unstable_post_task.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.native.development.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.native.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/cjs/scheduler.production.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/index.native.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/unstable_mock.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/scheduler → scheduler}/unstable_post_task.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/slice-ansi → slice-ansi}/tokenize-ansi.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core → string-width-cjs}/node_modules/is-fullwidth-code-point/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/license-cc0 +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/license-mit +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/readme.md +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/absolute.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/all-extend.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/all-union-fields.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/and-all.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/and.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-indices.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-length.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-reverse.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-slice.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-splice.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-tail.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/array-values.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/arrayable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/async-return-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/asyncify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/basic.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/camel-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/camel-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/camel-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/characters.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-except.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-pick-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-pick.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-simplify-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/conditional-simplify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/delimiter-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/delimiter-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/delimiter-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/distributed-omit.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/distributed-pick.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/empty-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/entries.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/entry.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exact.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/except.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclude-exactly.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclude-rest-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclude-strict.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/exclusify-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extends-strict.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extract-exactly.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extract-rest-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/extract-strict.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/find-global-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/fixed-length-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/get.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/global-this.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/globals/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/globals/observable-like.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/greater-than-or-equal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/greater-than.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-optional-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-readonly-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-required-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/has-writable-keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-any.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-empty-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-never.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-null.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if-unknown.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/if.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/includes.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/int-closed-range.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/int-range.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/characters.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/enforce-optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/keys.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/numeric.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/internal/type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/invariant-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-any.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-equal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-float.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-integer.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-literal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-lowercase.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-never.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-null.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-nullable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-optional-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-readonly-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-required-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-undefined.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-unknown.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-uppercase.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/is-writable-key-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/iterable-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/join.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/json-value.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/jsonifiable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/jsonify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/kebab-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/kebab-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/kebab-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/key-as-string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/keys-of-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/last-array-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/less-than-or-equal.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/less-than.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/literal-to-primitive-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/literal-to-primitive.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/literal-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/merge-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/merge-exclusive.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/merge.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/multidimensional-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/multidimensional-readonly-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-empty-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-empty-string.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-empty-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/non-nullable-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/numeric.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/object-merge.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/omit-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/omit-index-signature.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/opaque.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/optional-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/or-all.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/or.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/override-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/package-json.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/partial-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/partial-on-undefined-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pascal-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pascal-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pascal-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/paths.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pick-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/pick-index-signature.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/primitive.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/promisable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/readonly-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/readonly-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/readonly-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/remove-prefix.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/remove-suffix.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/replace.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-all-or-none.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-at-least-one.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-exactly-one.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/require-one-or-none.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/required-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/required-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/schema.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/screaming-snake-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-field-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-non-nullable-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-non-nullable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-optional.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-parameter-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-readonly.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-required-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-required.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/set-return-type.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/shared-union-fields-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/shared-union-fields.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/simplify-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/simplify.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/single-key-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/snake-case.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/snake-cased-properties-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/snake-cased-properties.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/some-extend.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/split-on-rest-element.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/split.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/spread.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-length.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-repeat.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-slice.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-to-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/string-to-number.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/stringified.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/structured-cloneable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/subtract.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/sum.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tagged-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tagged.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/trim.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tsconfig-json.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tuple-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tuple-to-object.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/tuple-to-union.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/typed-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/undefined-on-partial-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-length.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-member.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-to-intersection.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/union-to-tuple.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-array.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-map.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-record.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unknown-set.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unwrap-partial.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/unwrap-required.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/value-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/words.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/writable-deep.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/writable-keys-of.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/writable.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/type-fest → type-fest}/source/xor.d.ts +0 -0
- /package/node_modules/{@npmcli/git/node_modules/which → which}/bin/which.js +0 -0
- /package/node_modules/{@npmcli/git/node_modules/which → which}/lib/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/index.d.ts +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/index.js +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/string-width → widest-line}/license +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/package.json +0 -0
- /package/node_modules/{@quantiya/codevibe-core/node_modules/widest-line → widest-line}/readme.md +0 -0
|
@@ -0,0 +1,3202 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* NAN - Native Abstractions for Node.js
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2018 NAN contributors:
|
|
5
|
+
* - Rod Vagg <https://github.com/rvagg>
|
|
6
|
+
* - Benjamin Byholm <https://github.com/kkoopa>
|
|
7
|
+
* - Trevor Norris <https://github.com/trevnorris>
|
|
8
|
+
* - Nathan Rajlich <https://github.com/TooTallNate>
|
|
9
|
+
* - Brett Lawson <https://github.com/brett19>
|
|
10
|
+
* - Ben Noordhuis <https://github.com/bnoordhuis>
|
|
11
|
+
* - David Siegel <https://github.com/agnat>
|
|
12
|
+
* - Michael Ira Krufky <https://github.com/mkrufky>
|
|
13
|
+
*
|
|
14
|
+
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
|
|
15
|
+
*
|
|
16
|
+
* Version 2.28.0: current Node 26.4.0, Node 0.12: 0.12.18, Node 0.10: 0.10.48, iojs: 3.3.1
|
|
17
|
+
*
|
|
18
|
+
* See https://github.com/nodejs/nan for the latest update to this file
|
|
19
|
+
**********************************************************************************/
|
|
20
|
+
|
|
21
|
+
#ifndef NAN_H_
|
|
22
|
+
#define NAN_H_
|
|
23
|
+
|
|
24
|
+
#include <node_version.h>
|
|
25
|
+
|
|
26
|
+
#define NODE_0_10_MODULE_VERSION 11
|
|
27
|
+
#define NODE_0_12_MODULE_VERSION 14
|
|
28
|
+
#define ATOM_0_21_MODULE_VERSION 41
|
|
29
|
+
#define IOJS_1_0_MODULE_VERSION 42
|
|
30
|
+
#define IOJS_1_1_MODULE_VERSION 43
|
|
31
|
+
#define IOJS_2_0_MODULE_VERSION 44
|
|
32
|
+
#define IOJS_3_0_MODULE_VERSION 45
|
|
33
|
+
#define NODE_4_0_MODULE_VERSION 46
|
|
34
|
+
#define NODE_5_0_MODULE_VERSION 47
|
|
35
|
+
#define NODE_6_0_MODULE_VERSION 48
|
|
36
|
+
#define NODE_7_0_MODULE_VERSION 51
|
|
37
|
+
#define NODE_8_0_MODULE_VERSION 57
|
|
38
|
+
#define NODE_9_0_MODULE_VERSION 59
|
|
39
|
+
#define NODE_10_0_MODULE_VERSION 64
|
|
40
|
+
#define NODE_11_0_MODULE_VERSION 67
|
|
41
|
+
#define NODE_12_0_MODULE_VERSION 72
|
|
42
|
+
#define NODE_13_0_MODULE_VERSION 79
|
|
43
|
+
#define NODE_14_0_MODULE_VERSION 83
|
|
44
|
+
#define NODE_15_0_MODULE_VERSION 88
|
|
45
|
+
#define NODE_16_0_MODULE_VERSION 93
|
|
46
|
+
#define NODE_17_0_MODULE_VERSION 102
|
|
47
|
+
#define NODE_18_0_MODULE_VERSION 108
|
|
48
|
+
#define NODE_19_0_MODULE_VERSION 111
|
|
49
|
+
#define NODE_20_0_MODULE_VERSION 115
|
|
50
|
+
#define NODE_21_0_MODULE_VERSION 120
|
|
51
|
+
#define NODE_22_0_MODULE_VERSION 127
|
|
52
|
+
#define NODE_23_0_MODULE_VERSION 131
|
|
53
|
+
#define NODE_24_0_MODULE_VERSION 137
|
|
54
|
+
#define NODE_25_0_MODULE_VERSION 141
|
|
55
|
+
|
|
56
|
+
#ifdef _MSC_VER
|
|
57
|
+
# define NAN_HAS_CPLUSPLUS_11 (_MSC_VER >= 1800)
|
|
58
|
+
#else
|
|
59
|
+
# define NAN_HAS_CPLUSPLUS_11 (__cplusplus >= 201103L)
|
|
60
|
+
#endif
|
|
61
|
+
|
|
62
|
+
#if NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION && !NAN_HAS_CPLUSPLUS_11
|
|
63
|
+
# error This version of node/NAN/v8 requires a C++11 compiler
|
|
64
|
+
#endif
|
|
65
|
+
|
|
66
|
+
#include <uv.h>
|
|
67
|
+
#include <node.h>
|
|
68
|
+
#include <node_buffer.h>
|
|
69
|
+
#include <node_object_wrap.h>
|
|
70
|
+
#include <algorithm>
|
|
71
|
+
#include <cstring>
|
|
72
|
+
#include <climits>
|
|
73
|
+
#include <cstdlib>
|
|
74
|
+
#include <utility>
|
|
75
|
+
#if defined(_MSC_VER)
|
|
76
|
+
# pragma warning( push )
|
|
77
|
+
# pragma warning( disable : 4530 )
|
|
78
|
+
# include <queue>
|
|
79
|
+
# include <string>
|
|
80
|
+
# include <vector>
|
|
81
|
+
# pragma warning( pop )
|
|
82
|
+
#else
|
|
83
|
+
# include <queue>
|
|
84
|
+
# include <string>
|
|
85
|
+
# include <vector>
|
|
86
|
+
#endif
|
|
87
|
+
|
|
88
|
+
// uv helpers
|
|
89
|
+
#ifdef UV_VERSION_MAJOR
|
|
90
|
+
# ifndef UV_VERSION_PATCH
|
|
91
|
+
# define UV_VERSION_PATCH 0
|
|
92
|
+
# endif
|
|
93
|
+
# define NAUV_UVVERSION ((UV_VERSION_MAJOR << 16) | \
|
|
94
|
+
(UV_VERSION_MINOR << 8) | \
|
|
95
|
+
(UV_VERSION_PATCH))
|
|
96
|
+
#else
|
|
97
|
+
# define NAUV_UVVERSION 0x000b00
|
|
98
|
+
#endif
|
|
99
|
+
|
|
100
|
+
#if NAUV_UVVERSION < 0x000b0b
|
|
101
|
+
# ifdef WIN32
|
|
102
|
+
# include <windows.h>
|
|
103
|
+
# else
|
|
104
|
+
# include <pthread.h>
|
|
105
|
+
# endif
|
|
106
|
+
#endif
|
|
107
|
+
|
|
108
|
+
namespace Nan {
|
|
109
|
+
|
|
110
|
+
#define NAN_CONCAT(a, b) NAN_CONCAT_HELPER(a, b)
|
|
111
|
+
#define NAN_CONCAT_HELPER(a, b) a##b
|
|
112
|
+
|
|
113
|
+
#define NAN_INLINE inline // TODO(bnoordhuis) Remove in v3.0.0.
|
|
114
|
+
|
|
115
|
+
#if defined(__GNUC__) && \
|
|
116
|
+
!(defined(V8_DISABLE_DEPRECATIONS) && V8_DISABLE_DEPRECATIONS)
|
|
117
|
+
# define NAN_DEPRECATED __attribute__((deprecated))
|
|
118
|
+
#elif defined(_MSC_VER) && \
|
|
119
|
+
!(defined(V8_DISABLE_DEPRECATIONS) && V8_DISABLE_DEPRECATIONS)
|
|
120
|
+
# define NAN_DEPRECATED __declspec(deprecated)
|
|
121
|
+
#else
|
|
122
|
+
# define NAN_DEPRECATED
|
|
123
|
+
#endif
|
|
124
|
+
|
|
125
|
+
#if NAN_HAS_CPLUSPLUS_11
|
|
126
|
+
# define NAN_DISALLOW_ASSIGN(CLASS) void operator=(const CLASS&) = delete;
|
|
127
|
+
# define NAN_DISALLOW_COPY(CLASS) CLASS(const CLASS&) = delete;
|
|
128
|
+
# define NAN_DISALLOW_MOVE(CLASS) \
|
|
129
|
+
CLASS(CLASS&&) = delete; /* NOLINT(build/c++11) */ \
|
|
130
|
+
void operator=(CLASS&&) = delete;
|
|
131
|
+
#else
|
|
132
|
+
# define NAN_DISALLOW_ASSIGN(CLASS) void operator=(const CLASS&);
|
|
133
|
+
# define NAN_DISALLOW_COPY(CLASS) CLASS(const CLASS&);
|
|
134
|
+
# define NAN_DISALLOW_MOVE(CLASS)
|
|
135
|
+
#endif
|
|
136
|
+
|
|
137
|
+
#define NAN_DISALLOW_ASSIGN_COPY(CLASS) \
|
|
138
|
+
NAN_DISALLOW_ASSIGN(CLASS) \
|
|
139
|
+
NAN_DISALLOW_COPY(CLASS)
|
|
140
|
+
|
|
141
|
+
#define NAN_DISALLOW_ASSIGN_MOVE(CLASS) \
|
|
142
|
+
NAN_DISALLOW_ASSIGN(CLASS) \
|
|
143
|
+
NAN_DISALLOW_MOVE(CLASS)
|
|
144
|
+
|
|
145
|
+
#define NAN_DISALLOW_COPY_MOVE(CLASS) \
|
|
146
|
+
NAN_DISALLOW_COPY(CLASS) \
|
|
147
|
+
NAN_DISALLOW_MOVE(CLASS)
|
|
148
|
+
|
|
149
|
+
#define NAN_DISALLOW_ASSIGN_COPY_MOVE(CLASS) \
|
|
150
|
+
NAN_DISALLOW_ASSIGN(CLASS) \
|
|
151
|
+
NAN_DISALLOW_COPY(CLASS) \
|
|
152
|
+
NAN_DISALLOW_MOVE(CLASS)
|
|
153
|
+
|
|
154
|
+
#define TYPE_CHECK(T, S) \
|
|
155
|
+
while (false) { \
|
|
156
|
+
*(static_cast<T *volatile *>(0)) = static_cast<S*>(0); \
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
//=== RegistrationFunction =====================================================
|
|
160
|
+
|
|
161
|
+
#if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
162
|
+
typedef v8::Handle<v8::Object> ADDON_REGISTER_FUNCTION_ARGS_TYPE;
|
|
163
|
+
#else
|
|
164
|
+
typedef v8::Local<v8::Object> ADDON_REGISTER_FUNCTION_ARGS_TYPE;
|
|
165
|
+
#endif
|
|
166
|
+
|
|
167
|
+
#define NAN_MODULE_INIT(name) \
|
|
168
|
+
void name(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE target)
|
|
169
|
+
|
|
170
|
+
#if NODE_MAJOR_VERSION >= 10 || \
|
|
171
|
+
NODE_MAJOR_VERSION == 9 && NODE_MINOR_VERSION >= 3
|
|
172
|
+
#define NAN_MODULE_WORKER_ENABLED(module_name, registration) \
|
|
173
|
+
extern "C" NODE_MODULE_EXPORT void \
|
|
174
|
+
NAN_CONCAT(node_register_module_v, NODE_MODULE_VERSION)( \
|
|
175
|
+
v8::Local<v8::Object> exports, v8::Local<v8::Value> module, \
|
|
176
|
+
v8::Local<v8::Context> context) \
|
|
177
|
+
{ \
|
|
178
|
+
registration(exports); \
|
|
179
|
+
}
|
|
180
|
+
#else
|
|
181
|
+
#define NAN_MODULE_WORKER_ENABLED(module_name, registration) \
|
|
182
|
+
NODE_MODULE(module_name, registration)
|
|
183
|
+
#endif
|
|
184
|
+
|
|
185
|
+
//=== CallbackInfo =============================================================
|
|
186
|
+
|
|
187
|
+
#include "nan_callbacks.h" // NOLINT(build/include_subdir)
|
|
188
|
+
|
|
189
|
+
//==============================================================================
|
|
190
|
+
|
|
191
|
+
#if (NODE_MODULE_VERSION < NODE_0_12_MODULE_VERSION)
|
|
192
|
+
typedef v8::Script UnboundScript;
|
|
193
|
+
typedef v8::Script BoundScript;
|
|
194
|
+
#else
|
|
195
|
+
typedef v8::UnboundScript UnboundScript;
|
|
196
|
+
typedef v8::Script BoundScript;
|
|
197
|
+
#endif
|
|
198
|
+
|
|
199
|
+
#if (NODE_MODULE_VERSION < ATOM_0_21_MODULE_VERSION)
|
|
200
|
+
typedef v8::String::ExternalAsciiStringResource
|
|
201
|
+
ExternalOneByteStringResource;
|
|
202
|
+
#else
|
|
203
|
+
typedef v8::String::ExternalOneByteStringResource
|
|
204
|
+
ExternalOneByteStringResource;
|
|
205
|
+
#endif
|
|
206
|
+
|
|
207
|
+
#if (NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION)
|
|
208
|
+
template<typename T>
|
|
209
|
+
class NonCopyablePersistentTraits :
|
|
210
|
+
public v8::NonCopyablePersistentTraits<T> {};
|
|
211
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 10 || \
|
|
212
|
+
(V8_MAJOR_VERSION == 10 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 5))
|
|
213
|
+
template<typename T> struct CopyablePersistentTraits {
|
|
214
|
+
typedef v8::Persistent<T, CopyablePersistentTraits<T> > CopyablePersistent;
|
|
215
|
+
static const bool kResetInDestructor = true;
|
|
216
|
+
template <typename S, typename M>
|
|
217
|
+
static NAN_INLINE void Copy(const v8::Persistent<S, M> &source,
|
|
218
|
+
CopyablePersistent *dest) {
|
|
219
|
+
}
|
|
220
|
+
};
|
|
221
|
+
#else
|
|
222
|
+
template<typename T>
|
|
223
|
+
class CopyablePersistentTraits :
|
|
224
|
+
public v8::CopyablePersistentTraits<T> {};
|
|
225
|
+
#endif
|
|
226
|
+
|
|
227
|
+
template<typename T>
|
|
228
|
+
class PersistentBase :
|
|
229
|
+
public v8::PersistentBase<T> {};
|
|
230
|
+
|
|
231
|
+
template<typename T, typename M = v8::NonCopyablePersistentTraits<T> >
|
|
232
|
+
class Persistent;
|
|
233
|
+
#else
|
|
234
|
+
template<typename T> class NonCopyablePersistentTraits;
|
|
235
|
+
template<typename T> class PersistentBase;
|
|
236
|
+
template<typename T, typename P> class WeakCallbackData;
|
|
237
|
+
template<typename T, typename M = NonCopyablePersistentTraits<T> >
|
|
238
|
+
class Persistent;
|
|
239
|
+
#endif // NODE_MODULE_VERSION
|
|
240
|
+
|
|
241
|
+
template<typename T>
|
|
242
|
+
class Maybe {
|
|
243
|
+
public:
|
|
244
|
+
inline bool IsNothing() const { return !has_value_; }
|
|
245
|
+
inline bool IsJust() const { return has_value_; }
|
|
246
|
+
|
|
247
|
+
inline T ToChecked() const { return FromJust(); }
|
|
248
|
+
inline void Check() const { FromJust(); }
|
|
249
|
+
|
|
250
|
+
inline bool To(T* out) const {
|
|
251
|
+
if (IsJust()) *out = value_;
|
|
252
|
+
return IsJust();
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
inline T FromJust() const {
|
|
256
|
+
#if defined(V8_ENABLE_CHECKS)
|
|
257
|
+
assert(IsJust() && "FromJust is Nothing");
|
|
258
|
+
#endif // V8_ENABLE_CHECKS
|
|
259
|
+
return value_;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
inline T FromMaybe(const T& default_value) const {
|
|
263
|
+
return has_value_ ? value_ : default_value;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
inline bool operator==(const Maybe &other) const {
|
|
267
|
+
return (IsJust() == other.IsJust()) &&
|
|
268
|
+
(!IsJust() || FromJust() == other.FromJust());
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
inline bool operator!=(const Maybe &other) const {
|
|
272
|
+
return !operator==(other);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
276
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
|
|
277
|
+
// Allow implicit conversions from v8::Maybe<T> to Nan::Maybe<T>.
|
|
278
|
+
Maybe(const v8::Maybe<T>& that) // NOLINT(runtime/explicit)
|
|
279
|
+
: has_value_(that.IsJust())
|
|
280
|
+
, value_(that.FromMaybe(T())) {}
|
|
281
|
+
#endif
|
|
282
|
+
|
|
283
|
+
private:
|
|
284
|
+
Maybe() : has_value_(false) {}
|
|
285
|
+
explicit Maybe(const T& t) : has_value_(true), value_(t) {}
|
|
286
|
+
bool has_value_;
|
|
287
|
+
T value_;
|
|
288
|
+
|
|
289
|
+
template<typename U>
|
|
290
|
+
friend Maybe<U> Nothing();
|
|
291
|
+
template<typename U>
|
|
292
|
+
friend Maybe<U> Just(const U& u);
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
template<typename T>
|
|
296
|
+
inline Maybe<T> Nothing() {
|
|
297
|
+
return Maybe<T>();
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
template<typename T>
|
|
301
|
+
inline Maybe<T> Just(const T& t) {
|
|
302
|
+
return Maybe<T>(t);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
306
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
|
|
307
|
+
# include "nan_maybe_43_inl.h" // NOLINT(build/include)
|
|
308
|
+
#else
|
|
309
|
+
# include "nan_maybe_pre_43_inl.h" // NOLINT(build/include)
|
|
310
|
+
#endif
|
|
311
|
+
|
|
312
|
+
#include "nan_converters.h" // NOLINT(build/include_subdir)
|
|
313
|
+
#include "nan_new.h" // NOLINT(build/include_subdir)
|
|
314
|
+
|
|
315
|
+
#if NAUV_UVVERSION < 0x000b17
|
|
316
|
+
#define NAUV_WORK_CB(func) \
|
|
317
|
+
void func(uv_async_t *async, int)
|
|
318
|
+
#else
|
|
319
|
+
#define NAUV_WORK_CB(func) \
|
|
320
|
+
void func(uv_async_t *async)
|
|
321
|
+
#endif
|
|
322
|
+
|
|
323
|
+
#if NAUV_UVVERSION >= 0x000b0b
|
|
324
|
+
|
|
325
|
+
typedef uv_key_t nauv_key_t;
|
|
326
|
+
|
|
327
|
+
inline int nauv_key_create(nauv_key_t *key) {
|
|
328
|
+
return uv_key_create(key);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
inline void nauv_key_delete(nauv_key_t *key) {
|
|
332
|
+
uv_key_delete(key);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
inline void* nauv_key_get(nauv_key_t *key) {
|
|
336
|
+
return uv_key_get(key);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
inline void nauv_key_set(nauv_key_t *key, void *value) {
|
|
340
|
+
uv_key_set(key, value);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
#else
|
|
344
|
+
|
|
345
|
+
/* Implement thread local storage for older versions of libuv.
|
|
346
|
+
* This is essentially a backport of libuv commit 5d2434bf
|
|
347
|
+
* written by Ben Noordhuis, adjusted for names and inline.
|
|
348
|
+
*/
|
|
349
|
+
|
|
350
|
+
#ifndef WIN32
|
|
351
|
+
|
|
352
|
+
typedef pthread_key_t nauv_key_t;
|
|
353
|
+
|
|
354
|
+
inline int nauv_key_create(nauv_key_t* key) {
|
|
355
|
+
return -pthread_key_create(key, NULL);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
inline void nauv_key_delete(nauv_key_t* key) {
|
|
359
|
+
if (pthread_key_delete(*key))
|
|
360
|
+
abort();
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
inline void* nauv_key_get(nauv_key_t* key) {
|
|
364
|
+
return pthread_getspecific(*key);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
inline void nauv_key_set(nauv_key_t* key, void* value) {
|
|
368
|
+
if (pthread_setspecific(*key, value))
|
|
369
|
+
abort();
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
#else
|
|
373
|
+
|
|
374
|
+
typedef struct {
|
|
375
|
+
DWORD tls_index;
|
|
376
|
+
} nauv_key_t;
|
|
377
|
+
|
|
378
|
+
inline int nauv_key_create(nauv_key_t* key) {
|
|
379
|
+
key->tls_index = TlsAlloc();
|
|
380
|
+
if (key->tls_index == TLS_OUT_OF_INDEXES)
|
|
381
|
+
return UV_ENOMEM;
|
|
382
|
+
return 0;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
inline void nauv_key_delete(nauv_key_t* key) {
|
|
386
|
+
if (TlsFree(key->tls_index) == FALSE)
|
|
387
|
+
abort();
|
|
388
|
+
key->tls_index = TLS_OUT_OF_INDEXES;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
inline void* nauv_key_get(nauv_key_t* key) {
|
|
392
|
+
void* value = TlsGetValue(key->tls_index);
|
|
393
|
+
if (value == NULL)
|
|
394
|
+
if (GetLastError() != ERROR_SUCCESS)
|
|
395
|
+
abort();
|
|
396
|
+
return value;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
inline void nauv_key_set(nauv_key_t* key, void* value) {
|
|
400
|
+
if (TlsSetValue(key->tls_index, value) == FALSE)
|
|
401
|
+
abort();
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
#endif
|
|
405
|
+
#endif
|
|
406
|
+
|
|
407
|
+
#if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
408
|
+
template<typename T>
|
|
409
|
+
v8::Local<T> New(v8::Handle<T>);
|
|
410
|
+
#endif
|
|
411
|
+
|
|
412
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
413
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
|
|
414
|
+
typedef v8::WeakCallbackType WeakCallbackType;
|
|
415
|
+
#else
|
|
416
|
+
struct WeakCallbackType {
|
|
417
|
+
enum E {kParameter, kInternalFields};
|
|
418
|
+
E type;
|
|
419
|
+
WeakCallbackType(E other) : type(other) {} // NOLINT(runtime/explicit)
|
|
420
|
+
inline bool operator==(E other) { return other == this->type; }
|
|
421
|
+
inline bool operator!=(E other) { return !operator==(other); }
|
|
422
|
+
};
|
|
423
|
+
#endif
|
|
424
|
+
|
|
425
|
+
template<typename P> class WeakCallbackInfo;
|
|
426
|
+
|
|
427
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
428
|
+
# include "nan_persistent_12_inl.h" // NOLINT(build/include)
|
|
429
|
+
#else
|
|
430
|
+
# include "nan_persistent_pre_12_inl.h" // NOLINT(build/include)
|
|
431
|
+
#endif
|
|
432
|
+
|
|
433
|
+
namespace imp {
|
|
434
|
+
static const size_t kMaxLength = 0x3fffffff;
|
|
435
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 13 || \
|
|
436
|
+
(V8_MAJOR_VERSION == 13 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 4))
|
|
437
|
+
static const unsigned kReplaceInvalidUtf8
|
|
438
|
+
= v8::String::WriteFlags::kReplaceInvalidUtf8;
|
|
439
|
+
#else
|
|
440
|
+
static const unsigned kReplaceInvalidUtf8 = v8::String::REPLACE_INVALID_UTF8;
|
|
441
|
+
#endif
|
|
442
|
+
} // end of namespace imp
|
|
443
|
+
|
|
444
|
+
//=== HandleScope ==============================================================
|
|
445
|
+
|
|
446
|
+
class HandleScope {
|
|
447
|
+
v8::HandleScope scope;
|
|
448
|
+
|
|
449
|
+
public:
|
|
450
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
451
|
+
inline HandleScope() : scope(v8::Isolate::GetCurrent()) {}
|
|
452
|
+
inline static int NumberOfHandles() {
|
|
453
|
+
return v8::HandleScope::NumberOfHandles(v8::Isolate::GetCurrent());
|
|
454
|
+
}
|
|
455
|
+
#else
|
|
456
|
+
inline HandleScope() : scope() {}
|
|
457
|
+
inline static int NumberOfHandles() {
|
|
458
|
+
return v8::HandleScope::NumberOfHandles();
|
|
459
|
+
}
|
|
460
|
+
#endif
|
|
461
|
+
|
|
462
|
+
private:
|
|
463
|
+
// Make it hard to create heap-allocated or illegal handle scopes by
|
|
464
|
+
// disallowing certain operations.
|
|
465
|
+
HandleScope(const HandleScope &);
|
|
466
|
+
void operator=(const HandleScope &);
|
|
467
|
+
void *operator new(size_t size);
|
|
468
|
+
void operator delete(void *, size_t) {
|
|
469
|
+
abort();
|
|
470
|
+
}
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
class EscapableHandleScope {
|
|
474
|
+
public:
|
|
475
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
476
|
+
inline EscapableHandleScope() : scope(v8::Isolate::GetCurrent()) {}
|
|
477
|
+
|
|
478
|
+
inline static int NumberOfHandles() {
|
|
479
|
+
return v8::EscapableHandleScope::NumberOfHandles(v8::Isolate::GetCurrent());
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
template<typename T>
|
|
483
|
+
inline v8::Local<T> Escape(v8::Local<T> value) {
|
|
484
|
+
return scope.Escape(value);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
private:
|
|
488
|
+
v8::EscapableHandleScope scope;
|
|
489
|
+
#else
|
|
490
|
+
inline EscapableHandleScope() : scope() {}
|
|
491
|
+
|
|
492
|
+
inline static int NumberOfHandles() {
|
|
493
|
+
return v8::HandleScope::NumberOfHandles();
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
template<typename T>
|
|
497
|
+
inline v8::Local<T> Escape(v8::Local<T> value) {
|
|
498
|
+
return scope.Close(value);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
private:
|
|
502
|
+
v8::HandleScope scope;
|
|
503
|
+
#endif
|
|
504
|
+
|
|
505
|
+
private:
|
|
506
|
+
// Make it hard to create heap-allocated or illegal handle scopes by
|
|
507
|
+
// disallowing certain operations.
|
|
508
|
+
EscapableHandleScope(const EscapableHandleScope &);
|
|
509
|
+
void operator=(const EscapableHandleScope &);
|
|
510
|
+
void *operator new(size_t size);
|
|
511
|
+
void operator delete(void *, size_t) {
|
|
512
|
+
abort();
|
|
513
|
+
}
|
|
514
|
+
};
|
|
515
|
+
|
|
516
|
+
//=== TryCatch =================================================================
|
|
517
|
+
|
|
518
|
+
class TryCatch {
|
|
519
|
+
v8::TryCatch try_catch_;
|
|
520
|
+
friend void FatalException(const TryCatch&);
|
|
521
|
+
|
|
522
|
+
public:
|
|
523
|
+
#if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
|
|
524
|
+
TryCatch() : try_catch_(v8::Isolate::GetCurrent()) {}
|
|
525
|
+
#endif
|
|
526
|
+
|
|
527
|
+
inline bool HasCaught() const { return try_catch_.HasCaught(); }
|
|
528
|
+
|
|
529
|
+
inline bool CanContinue() const { return try_catch_.CanContinue(); }
|
|
530
|
+
|
|
531
|
+
inline v8::Local<v8::Value> ReThrow() {
|
|
532
|
+
#if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
533
|
+
return New(try_catch_.ReThrow());
|
|
534
|
+
#else
|
|
535
|
+
return try_catch_.ReThrow();
|
|
536
|
+
#endif
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
inline v8::Local<v8::Value> Exception() const {
|
|
540
|
+
return try_catch_.Exception();
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
544
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
|
|
545
|
+
inline v8::MaybeLocal<v8::Value> StackTrace() const {
|
|
546
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
547
|
+
v8::EscapableHandleScope scope(isolate);
|
|
548
|
+
return scope.Escape(try_catch_.StackTrace(isolate->GetCurrentContext())
|
|
549
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
550
|
+
}
|
|
551
|
+
#else
|
|
552
|
+
inline MaybeLocal<v8::Value> StackTrace() const {
|
|
553
|
+
return try_catch_.StackTrace();
|
|
554
|
+
}
|
|
555
|
+
#endif
|
|
556
|
+
|
|
557
|
+
inline v8::Local<v8::Message> Message() const {
|
|
558
|
+
return try_catch_.Message();
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
inline void Reset() { try_catch_.Reset(); }
|
|
562
|
+
|
|
563
|
+
inline void SetVerbose(bool value) { try_catch_.SetVerbose(value); }
|
|
564
|
+
|
|
565
|
+
inline void SetCaptureMessage(bool value) {
|
|
566
|
+
try_catch_.SetCaptureMessage(value);
|
|
567
|
+
}
|
|
568
|
+
};
|
|
569
|
+
|
|
570
|
+
v8::Local<v8::Value> MakeCallback(v8::Local<v8::Object> target,
|
|
571
|
+
v8::Local<v8::Function> func,
|
|
572
|
+
int argc,
|
|
573
|
+
v8::Local<v8::Value>* argv);
|
|
574
|
+
v8::Local<v8::Value> MakeCallback(v8::Local<v8::Object> target,
|
|
575
|
+
v8::Local<v8::String> symbol,
|
|
576
|
+
int argc,
|
|
577
|
+
v8::Local<v8::Value>* argv);
|
|
578
|
+
v8::Local<v8::Value> MakeCallback(v8::Local<v8::Object> target,
|
|
579
|
+
const char* method,
|
|
580
|
+
int argc,
|
|
581
|
+
v8::Local<v8::Value>* argv);
|
|
582
|
+
|
|
583
|
+
// === AsyncResource ===========================================================
|
|
584
|
+
|
|
585
|
+
class AsyncResource {
|
|
586
|
+
public:
|
|
587
|
+
AsyncResource(
|
|
588
|
+
v8::Local<v8::String> name
|
|
589
|
+
, v8::Local<v8::Object> resource = New<v8::Object>()) {
|
|
590
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
591
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
592
|
+
|
|
593
|
+
if (resource.IsEmpty()) {
|
|
594
|
+
resource = New<v8::Object>();
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
context = node::EmitAsyncInit(isolate, resource, name);
|
|
598
|
+
#endif
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
AsyncResource(
|
|
602
|
+
const char* name
|
|
603
|
+
, v8::Local<v8::Object> resource = New<v8::Object>()) {
|
|
604
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
605
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
606
|
+
|
|
607
|
+
if (resource.IsEmpty()) {
|
|
608
|
+
resource = New<v8::Object>();
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
v8::Local<v8::String> name_string =
|
|
612
|
+
New<v8::String>(name).ToLocalChecked();
|
|
613
|
+
context = node::EmitAsyncInit(isolate, resource, name_string);
|
|
614
|
+
#endif
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
~AsyncResource() {
|
|
618
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
619
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
620
|
+
node::EmitAsyncDestroy(isolate, context);
|
|
621
|
+
#endif
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
inline MaybeLocal<v8::Value> runInAsyncScope(
|
|
625
|
+
v8::Local<v8::Object> target
|
|
626
|
+
, v8::Local<v8::Function> func
|
|
627
|
+
, int argc
|
|
628
|
+
, v8::Local<v8::Value>* argv) {
|
|
629
|
+
#if NODE_MODULE_VERSION < NODE_9_0_MODULE_VERSION
|
|
630
|
+
return MakeCallback(target, func, argc, argv);
|
|
631
|
+
#else
|
|
632
|
+
return node::MakeCallback(
|
|
633
|
+
v8::Isolate::GetCurrent(), target, func, argc, argv, context);
|
|
634
|
+
#endif
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
inline MaybeLocal<v8::Value> runInAsyncScope(
|
|
638
|
+
v8::Local<v8::Object> target
|
|
639
|
+
, v8::Local<v8::String> symbol
|
|
640
|
+
, int argc
|
|
641
|
+
, v8::Local<v8::Value>* argv) {
|
|
642
|
+
#if NODE_MODULE_VERSION < NODE_9_0_MODULE_VERSION
|
|
643
|
+
return MakeCallback(target, symbol, argc, argv);
|
|
644
|
+
#else
|
|
645
|
+
return node::MakeCallback(
|
|
646
|
+
v8::Isolate::GetCurrent(), target, symbol, argc, argv, context);
|
|
647
|
+
#endif
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
inline MaybeLocal<v8::Value> runInAsyncScope(
|
|
651
|
+
v8::Local<v8::Object> target
|
|
652
|
+
, const char* method
|
|
653
|
+
, int argc
|
|
654
|
+
, v8::Local<v8::Value>* argv) {
|
|
655
|
+
#if NODE_MODULE_VERSION < NODE_9_0_MODULE_VERSION
|
|
656
|
+
return MakeCallback(target, method, argc, argv);
|
|
657
|
+
#else
|
|
658
|
+
return node::MakeCallback(
|
|
659
|
+
v8::Isolate::GetCurrent(), target, method, argc, argv, context);
|
|
660
|
+
#endif
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
private:
|
|
664
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(AsyncResource)
|
|
665
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
666
|
+
node::async_context context;
|
|
667
|
+
#endif
|
|
668
|
+
};
|
|
669
|
+
|
|
670
|
+
inline uv_loop_t* GetCurrentEventLoop() {
|
|
671
|
+
#if NODE_MAJOR_VERSION >= 10 || \
|
|
672
|
+
NODE_MAJOR_VERSION == 9 && NODE_MINOR_VERSION >= 3 || \
|
|
673
|
+
NODE_MAJOR_VERSION == 8 && NODE_MINOR_VERSION >= 10
|
|
674
|
+
return node::GetCurrentEventLoop(v8::Isolate::GetCurrent());
|
|
675
|
+
#else
|
|
676
|
+
return uv_default_loop();
|
|
677
|
+
#endif
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
//============ =================================================================
|
|
681
|
+
|
|
682
|
+
/* node 0.12 */
|
|
683
|
+
#if NODE_MODULE_VERSION >= NODE_0_12_MODULE_VERSION
|
|
684
|
+
inline
|
|
685
|
+
void SetCounterFunction(v8::CounterLookupCallback cb) {
|
|
686
|
+
v8::Isolate::GetCurrent()->SetCounterFunction(cb);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
inline
|
|
690
|
+
void SetCreateHistogramFunction(v8::CreateHistogramCallback cb) {
|
|
691
|
+
v8::Isolate::GetCurrent()->SetCreateHistogramFunction(cb);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
inline
|
|
695
|
+
void SetAddHistogramSampleFunction(v8::AddHistogramSampleCallback cb) {
|
|
696
|
+
v8::Isolate::GetCurrent()->SetAddHistogramSampleFunction(cb);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
#if defined(V8_MAJOR_VERSION) && \
|
|
700
|
+
(V8_MAJOR_VERSION > 12 || \
|
|
701
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && \
|
|
702
|
+
V8_MINOR_VERSION >= 7))
|
|
703
|
+
NAN_DEPRECATED inline bool IdleNotification(int) {
|
|
704
|
+
return true;
|
|
705
|
+
}
|
|
706
|
+
# elif defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
707
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
|
|
708
|
+
NAN_DEPRECATED inline bool IdleNotification(int idle_time_in_ms) {
|
|
709
|
+
return v8::Isolate::GetCurrent()->IdleNotificationDeadline(
|
|
710
|
+
idle_time_in_ms * 0.001);
|
|
711
|
+
}
|
|
712
|
+
# else
|
|
713
|
+
NAN_DEPRECATED inline bool IdleNotification(int idle_time_in_ms) {
|
|
714
|
+
return v8::Isolate::GetCurrent()->IdleNotification(idle_time_in_ms);
|
|
715
|
+
}
|
|
716
|
+
#endif
|
|
717
|
+
|
|
718
|
+
inline void LowMemoryNotification() {
|
|
719
|
+
v8::Isolate::GetCurrent()->LowMemoryNotification();
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
inline void ContextDisposedNotification() {
|
|
723
|
+
v8::Isolate::GetCurrent()->ContextDisposedNotification();
|
|
724
|
+
}
|
|
725
|
+
#else
|
|
726
|
+
inline
|
|
727
|
+
void SetCounterFunction(v8::CounterLookupCallback cb) {
|
|
728
|
+
v8::V8::SetCounterFunction(cb);
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
inline
|
|
732
|
+
void SetCreateHistogramFunction(v8::CreateHistogramCallback cb) {
|
|
733
|
+
v8::V8::SetCreateHistogramFunction(cb);
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
inline
|
|
737
|
+
void SetAddHistogramSampleFunction(v8::AddHistogramSampleCallback cb) {
|
|
738
|
+
v8::V8::SetAddHistogramSampleFunction(cb);
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
inline bool IdleNotification(int idle_time_in_ms) {
|
|
742
|
+
return v8::V8::IdleNotification(idle_time_in_ms);
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
inline void LowMemoryNotification() {
|
|
746
|
+
v8::V8::LowMemoryNotification();
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
inline void ContextDisposedNotification() {
|
|
750
|
+
v8::V8::ContextDisposedNotification();
|
|
751
|
+
}
|
|
752
|
+
#endif
|
|
753
|
+
|
|
754
|
+
#if (NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION) // Node 0.12
|
|
755
|
+
inline v8::Local<v8::Primitive> Undefined() {
|
|
756
|
+
# if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
757
|
+
EscapableHandleScope scope;
|
|
758
|
+
return scope.Escape(New(v8::Undefined(v8::Isolate::GetCurrent())));
|
|
759
|
+
# else
|
|
760
|
+
return v8::Undefined(v8::Isolate::GetCurrent());
|
|
761
|
+
# endif
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
inline v8::Local<v8::Primitive> Null() {
|
|
765
|
+
# if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
766
|
+
EscapableHandleScope scope;
|
|
767
|
+
return scope.Escape(New(v8::Null(v8::Isolate::GetCurrent())));
|
|
768
|
+
# else
|
|
769
|
+
return v8::Null(v8::Isolate::GetCurrent());
|
|
770
|
+
# endif
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
inline v8::Local<v8::Boolean> True() {
|
|
774
|
+
# if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
775
|
+
EscapableHandleScope scope;
|
|
776
|
+
return scope.Escape(New(v8::True(v8::Isolate::GetCurrent())));
|
|
777
|
+
# else
|
|
778
|
+
return v8::True(v8::Isolate::GetCurrent());
|
|
779
|
+
# endif
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
inline v8::Local<v8::Boolean> False() {
|
|
783
|
+
# if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
784
|
+
EscapableHandleScope scope;
|
|
785
|
+
return scope.Escape(New(v8::False(v8::Isolate::GetCurrent())));
|
|
786
|
+
# else
|
|
787
|
+
return v8::False(v8::Isolate::GetCurrent());
|
|
788
|
+
# endif
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
inline v8::Local<v8::String> EmptyString() {
|
|
792
|
+
return v8::String::Empty(v8::Isolate::GetCurrent());
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
inline int AdjustExternalMemory(int bc) {
|
|
796
|
+
return static_cast<int>(
|
|
797
|
+
v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(bc));
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
inline void SetTemplate(
|
|
801
|
+
v8::Local<v8::Template> templ
|
|
802
|
+
, const char *name
|
|
803
|
+
, v8::Local<v8::Data> value) {
|
|
804
|
+
templ->Set(v8::Isolate::GetCurrent(), name, value);
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
inline void SetTemplate(
|
|
808
|
+
v8::Local<v8::Template> templ
|
|
809
|
+
, v8::Local<v8::String> name
|
|
810
|
+
, v8::Local<v8::Data> value
|
|
811
|
+
, v8::PropertyAttribute attributes) {
|
|
812
|
+
templ->Set(name, value, attributes);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
inline v8::Local<v8::Context> GetCurrentContext() {
|
|
816
|
+
return v8::Isolate::GetCurrent()->GetCurrentContext();
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
inline void* GetInternalFieldPointer(
|
|
820
|
+
v8::Local<v8::Object> object
|
|
821
|
+
, int index) {
|
|
822
|
+
#if (V8_MAJOR_VERSION > 14) || \
|
|
823
|
+
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION > 2) || \
|
|
824
|
+
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION == 2 && V8_BUILD_NUMBER >= 194)
|
|
825
|
+
return object->GetAlignedPointerFromInternalField(
|
|
826
|
+
index, v8::kEmbedderDataTypeTagDefault
|
|
827
|
+
);
|
|
828
|
+
# else
|
|
829
|
+
return object->GetAlignedPointerFromInternalField(index);
|
|
830
|
+
# endif
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
inline void SetInternalFieldPointer(
|
|
834
|
+
v8::Local<v8::Object> object
|
|
835
|
+
, int index
|
|
836
|
+
, void* value) {
|
|
837
|
+
#if (V8_MAJOR_VERSION > 14) || \
|
|
838
|
+
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION > 2) || \
|
|
839
|
+
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION == 2 && V8_BUILD_NUMBER >= 194)
|
|
840
|
+
object->SetAlignedPointerInInternalField(
|
|
841
|
+
index, value, v8::kEmbedderDataTypeTagDefault
|
|
842
|
+
);
|
|
843
|
+
# else
|
|
844
|
+
object->SetAlignedPointerInInternalField(index, value);
|
|
845
|
+
# endif
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
# define NAN_GC_CALLBACK(name) \
|
|
849
|
+
void name(v8::Isolate *isolate, v8::GCType type, v8::GCCallbackFlags flags)
|
|
850
|
+
|
|
851
|
+
#if NODE_MODULE_VERSION <= NODE_4_0_MODULE_VERSION
|
|
852
|
+
typedef v8::Isolate::GCEpilogueCallback GCEpilogueCallback;
|
|
853
|
+
typedef v8::Isolate::GCPrologueCallback GCPrologueCallback;
|
|
854
|
+
#else
|
|
855
|
+
typedef v8::Isolate::GCCallback GCEpilogueCallback;
|
|
856
|
+
typedef v8::Isolate::GCCallback GCPrologueCallback;
|
|
857
|
+
#endif
|
|
858
|
+
|
|
859
|
+
inline void AddGCEpilogueCallback(
|
|
860
|
+
GCEpilogueCallback callback
|
|
861
|
+
, v8::GCType gc_type_filter = v8::kGCTypeAll) {
|
|
862
|
+
v8::Isolate::GetCurrent()->AddGCEpilogueCallback(callback, gc_type_filter);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
inline void RemoveGCEpilogueCallback(
|
|
866
|
+
GCEpilogueCallback callback) {
|
|
867
|
+
v8::Isolate::GetCurrent()->RemoveGCEpilogueCallback(callback);
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
inline void AddGCPrologueCallback(
|
|
871
|
+
GCPrologueCallback callback
|
|
872
|
+
, v8::GCType gc_type_filter = v8::kGCTypeAll) {
|
|
873
|
+
v8::Isolate::GetCurrent()->AddGCPrologueCallback(callback, gc_type_filter);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
inline void RemoveGCPrologueCallback(
|
|
877
|
+
GCPrologueCallback callback) {
|
|
878
|
+
v8::Isolate::GetCurrent()->RemoveGCPrologueCallback(callback);
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
inline void GetHeapStatistics(
|
|
882
|
+
v8::HeapStatistics *heap_statistics) {
|
|
883
|
+
v8::Isolate::GetCurrent()->GetHeapStatistics(heap_statistics);
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
# define X(NAME) \
|
|
887
|
+
inline v8::Local<v8::Value> NAME(const char *msg) { \
|
|
888
|
+
EscapableHandleScope scope; \
|
|
889
|
+
return scope.Escape(v8::Exception::NAME(New(msg).ToLocalChecked())); \
|
|
890
|
+
} \
|
|
891
|
+
\
|
|
892
|
+
inline \
|
|
893
|
+
v8::Local<v8::Value> NAME(v8::Local<v8::String> msg) { \
|
|
894
|
+
return v8::Exception::NAME(msg); \
|
|
895
|
+
} \
|
|
896
|
+
\
|
|
897
|
+
inline void Throw ## NAME(const char *msg) { \
|
|
898
|
+
HandleScope scope; \
|
|
899
|
+
v8::Isolate::GetCurrent()->ThrowException( \
|
|
900
|
+
v8::Exception::NAME(New(msg).ToLocalChecked())); \
|
|
901
|
+
} \
|
|
902
|
+
\
|
|
903
|
+
inline void Throw ## NAME(v8::Local<v8::String> msg) { \
|
|
904
|
+
HandleScope scope; \
|
|
905
|
+
v8::Isolate::GetCurrent()->ThrowException( \
|
|
906
|
+
v8::Exception::NAME(msg)); \
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
X(Error)
|
|
910
|
+
X(RangeError)
|
|
911
|
+
X(ReferenceError)
|
|
912
|
+
X(SyntaxError)
|
|
913
|
+
X(TypeError)
|
|
914
|
+
|
|
915
|
+
# undef X
|
|
916
|
+
|
|
917
|
+
inline void ThrowError(v8::Local<v8::Value> error) {
|
|
918
|
+
v8::Isolate::GetCurrent()->ThrowException(error);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
inline MaybeLocal<v8::Object> NewBuffer(
|
|
922
|
+
char *data
|
|
923
|
+
, size_t length
|
|
924
|
+
#if NODE_MODULE_VERSION > IOJS_2_0_MODULE_VERSION
|
|
925
|
+
, node::Buffer::FreeCallback callback
|
|
926
|
+
#else
|
|
927
|
+
, node::smalloc::FreeCallback callback
|
|
928
|
+
#endif
|
|
929
|
+
, void *hint
|
|
930
|
+
) {
|
|
931
|
+
// arbitrary buffer lengths requires
|
|
932
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
933
|
+
assert(length <= imp::kMaxLength && "too large buffer");
|
|
934
|
+
#if NODE_MODULE_VERSION > IOJS_2_0_MODULE_VERSION
|
|
935
|
+
return node::Buffer::New(
|
|
936
|
+
v8::Isolate::GetCurrent(), data, length, callback, hint);
|
|
937
|
+
#else
|
|
938
|
+
return node::Buffer::New(v8::Isolate::GetCurrent(), data, length, callback,
|
|
939
|
+
hint);
|
|
940
|
+
#endif
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
inline MaybeLocal<v8::Object> CopyBuffer(
|
|
944
|
+
const char *data
|
|
945
|
+
, uint32_t size
|
|
946
|
+
) {
|
|
947
|
+
// arbitrary buffer lengths requires
|
|
948
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
949
|
+
assert(size <= imp::kMaxLength && "too large buffer");
|
|
950
|
+
#if NODE_MODULE_VERSION > IOJS_2_0_MODULE_VERSION
|
|
951
|
+
return node::Buffer::Copy(
|
|
952
|
+
v8::Isolate::GetCurrent(), data, size);
|
|
953
|
+
#else
|
|
954
|
+
return node::Buffer::New(v8::Isolate::GetCurrent(), data, size);
|
|
955
|
+
#endif
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
inline MaybeLocal<v8::Object> NewBuffer(uint32_t size) {
|
|
959
|
+
// arbitrary buffer lengths requires
|
|
960
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
961
|
+
assert(size <= imp::kMaxLength && "too large buffer");
|
|
962
|
+
#if NODE_MODULE_VERSION > IOJS_2_0_MODULE_VERSION
|
|
963
|
+
return node::Buffer::New(
|
|
964
|
+
v8::Isolate::GetCurrent(), size);
|
|
965
|
+
#else
|
|
966
|
+
return node::Buffer::New(v8::Isolate::GetCurrent(), size);
|
|
967
|
+
#endif
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
inline MaybeLocal<v8::Object> NewBuffer(
|
|
971
|
+
char* data
|
|
972
|
+
, uint32_t size
|
|
973
|
+
) {
|
|
974
|
+
// arbitrary buffer lengths requires
|
|
975
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
976
|
+
assert(size <= imp::kMaxLength && "too large buffer");
|
|
977
|
+
#if NODE_MODULE_VERSION > IOJS_2_0_MODULE_VERSION
|
|
978
|
+
return node::Buffer::New(v8::Isolate::GetCurrent(), data, size);
|
|
979
|
+
#else
|
|
980
|
+
return node::Buffer::Use(v8::Isolate::GetCurrent(), data, size);
|
|
981
|
+
#endif
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
985
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
|
|
986
|
+
inline MaybeLocal<v8::String>
|
|
987
|
+
NewOneByteString(const uint8_t * value, int length = -1) {
|
|
988
|
+
return v8::String::NewFromOneByte(v8::Isolate::GetCurrent(), value,
|
|
989
|
+
v8::NewStringType::kNormal, length);
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
inline MaybeLocal<BoundScript> CompileScript(
|
|
993
|
+
v8::Local<v8::String> s
|
|
994
|
+
, const v8::ScriptOrigin& origin
|
|
995
|
+
) {
|
|
996
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
997
|
+
v8::EscapableHandleScope scope(isolate);
|
|
998
|
+
v8::ScriptCompiler::Source source(s, origin);
|
|
999
|
+
return scope.Escape(
|
|
1000
|
+
v8::ScriptCompiler::Compile(isolate->GetCurrentContext(), &source)
|
|
1001
|
+
.FromMaybe(v8::Local<BoundScript>()));
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
inline MaybeLocal<BoundScript> CompileScript(
|
|
1005
|
+
v8::Local<v8::String> s
|
|
1006
|
+
) {
|
|
1007
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1008
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1009
|
+
v8::ScriptCompiler::Source source(s);
|
|
1010
|
+
return scope.Escape(
|
|
1011
|
+
v8::ScriptCompiler::Compile(isolate->GetCurrentContext(), &source)
|
|
1012
|
+
.FromMaybe(v8::Local<BoundScript>()));
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
inline MaybeLocal<v8::Value> RunScript(
|
|
1016
|
+
v8::Local<UnboundScript> script
|
|
1017
|
+
) {
|
|
1018
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1019
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1020
|
+
return scope.Escape(script->BindToCurrentContext()
|
|
1021
|
+
->Run(isolate->GetCurrentContext())
|
|
1022
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
inline MaybeLocal<v8::Value> RunScript(
|
|
1026
|
+
v8::Local<BoundScript> script
|
|
1027
|
+
) {
|
|
1028
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1029
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1030
|
+
return scope.Escape(script->Run(isolate->GetCurrentContext())
|
|
1031
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
1032
|
+
}
|
|
1033
|
+
#else
|
|
1034
|
+
inline MaybeLocal<v8::String>
|
|
1035
|
+
NewOneByteString(const uint8_t * value, int length = -1) {
|
|
1036
|
+
return v8::String::NewFromOneByte(v8::Isolate::GetCurrent(), value,
|
|
1037
|
+
v8::String::kNormalString, length);
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
inline MaybeLocal<BoundScript> CompileScript(
|
|
1041
|
+
v8::Local<v8::String> s
|
|
1042
|
+
, const v8::ScriptOrigin& origin
|
|
1043
|
+
) {
|
|
1044
|
+
v8::ScriptCompiler::Source source(s, origin);
|
|
1045
|
+
return v8::ScriptCompiler::Compile(v8::Isolate::GetCurrent(), &source);
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
inline MaybeLocal<BoundScript> CompileScript(
|
|
1049
|
+
v8::Local<v8::String> s
|
|
1050
|
+
) {
|
|
1051
|
+
v8::ScriptCompiler::Source source(s);
|
|
1052
|
+
return v8::ScriptCompiler::Compile(v8::Isolate::GetCurrent(), &source);
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
inline MaybeLocal<v8::Value> RunScript(
|
|
1056
|
+
v8::Local<UnboundScript> script
|
|
1057
|
+
) {
|
|
1058
|
+
EscapableHandleScope scope;
|
|
1059
|
+
return scope.Escape(script->BindToCurrentContext()->Run());
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
inline MaybeLocal<v8::Value> RunScript(
|
|
1063
|
+
v8::Local<BoundScript> script
|
|
1064
|
+
) {
|
|
1065
|
+
return script->Run();
|
|
1066
|
+
}
|
|
1067
|
+
#endif
|
|
1068
|
+
|
|
1069
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> MakeCallback(
|
|
1070
|
+
v8::Local<v8::Object> target
|
|
1071
|
+
, v8::Local<v8::Function> func
|
|
1072
|
+
, int argc
|
|
1073
|
+
, v8::Local<v8::Value>* argv) {
|
|
1074
|
+
#if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1075
|
+
EscapableHandleScope scope;
|
|
1076
|
+
return scope.Escape(New(node::MakeCallback(
|
|
1077
|
+
v8::Isolate::GetCurrent(), target, func, argc, argv)));
|
|
1078
|
+
#else
|
|
1079
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1080
|
+
AsyncResource res("nan:makeCallback");
|
|
1081
|
+
return res.runInAsyncScope(target, func, argc, argv)
|
|
1082
|
+
.FromMaybe(v8::Local<v8::Value>());
|
|
1083
|
+
# else
|
|
1084
|
+
return node::MakeCallback(
|
|
1085
|
+
v8::Isolate::GetCurrent(), target, func, argc, argv);
|
|
1086
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1087
|
+
#endif // NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> MakeCallback(
|
|
1091
|
+
v8::Local<v8::Object> target
|
|
1092
|
+
, v8::Local<v8::String> symbol
|
|
1093
|
+
, int argc
|
|
1094
|
+
, v8::Local<v8::Value>* argv) {
|
|
1095
|
+
#if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1096
|
+
EscapableHandleScope scope;
|
|
1097
|
+
return scope.Escape(New(node::MakeCallback(
|
|
1098
|
+
v8::Isolate::GetCurrent(), target, symbol, argc, argv)));
|
|
1099
|
+
#else
|
|
1100
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1101
|
+
AsyncResource res("nan:makeCallback");
|
|
1102
|
+
return res.runInAsyncScope(target, symbol, argc, argv)
|
|
1103
|
+
.FromMaybe(v8::Local<v8::Value>());
|
|
1104
|
+
# else
|
|
1105
|
+
return node::MakeCallback(
|
|
1106
|
+
v8::Isolate::GetCurrent(), target, symbol, argc, argv);
|
|
1107
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1108
|
+
#endif // NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> MakeCallback(
|
|
1112
|
+
v8::Local<v8::Object> target
|
|
1113
|
+
, const char* method
|
|
1114
|
+
, int argc
|
|
1115
|
+
, v8::Local<v8::Value>* argv) {
|
|
1116
|
+
#if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1117
|
+
EscapableHandleScope scope;
|
|
1118
|
+
return scope.Escape(New(node::MakeCallback(
|
|
1119
|
+
v8::Isolate::GetCurrent(), target, method, argc, argv)));
|
|
1120
|
+
#else
|
|
1121
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1122
|
+
AsyncResource res("nan:makeCallback");
|
|
1123
|
+
return res.runInAsyncScope(target, method, argc, argv)
|
|
1124
|
+
.FromMaybe(v8::Local<v8::Value>());
|
|
1125
|
+
# else
|
|
1126
|
+
return node::MakeCallback(
|
|
1127
|
+
v8::Isolate::GetCurrent(), target, method, argc, argv);
|
|
1128
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1129
|
+
#endif // NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
inline void FatalException(const TryCatch& try_catch) {
|
|
1133
|
+
node::FatalException(v8::Isolate::GetCurrent(), try_catch.try_catch_);
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
inline v8::Local<v8::Value> ErrnoException(
|
|
1137
|
+
int errorno
|
|
1138
|
+
, const char* syscall = NULL
|
|
1139
|
+
, const char* message = NULL
|
|
1140
|
+
, const char* path = NULL) {
|
|
1141
|
+
return node::ErrnoException(v8::Isolate::GetCurrent(), errorno, syscall,
|
|
1142
|
+
message, path);
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> NanErrnoException(
|
|
1146
|
+
int errorno
|
|
1147
|
+
, const char* syscall = NULL
|
|
1148
|
+
, const char* message = NULL
|
|
1149
|
+
, const char* path = NULL) {
|
|
1150
|
+
return ErrnoException(errorno, syscall, message, path);
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
template<typename T>
|
|
1154
|
+
inline void SetIsolateData(
|
|
1155
|
+
v8::Isolate *isolate
|
|
1156
|
+
, T *data
|
|
1157
|
+
) {
|
|
1158
|
+
isolate->SetData(0, data);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
template<typename T>
|
|
1162
|
+
inline T *GetIsolateData(
|
|
1163
|
+
v8::Isolate *isolate
|
|
1164
|
+
) {
|
|
1165
|
+
return static_cast<T*>(isolate->GetData(0));
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
class Utf8String {
|
|
1169
|
+
public:
|
|
1170
|
+
inline explicit Utf8String(v8::Local<v8::Value> from) :
|
|
1171
|
+
length_(0), str_(str_st_) {
|
|
1172
|
+
HandleScope scope;
|
|
1173
|
+
if (!from.IsEmpty()) {
|
|
1174
|
+
#if NODE_MAJOR_VERSION >= 10
|
|
1175
|
+
v8::Local<v8::Context> context = GetCurrentContext();
|
|
1176
|
+
v8::Local<v8::String> string =
|
|
1177
|
+
from->ToString(context).FromMaybe(v8::Local<v8::String>());
|
|
1178
|
+
#else
|
|
1179
|
+
v8::Local<v8::String> string = from->ToString();
|
|
1180
|
+
#endif
|
|
1181
|
+
if (!string.IsEmpty()) {
|
|
1182
|
+
size_t len = 3 * string->Length() + 1;
|
|
1183
|
+
assert(len <= INT_MAX);
|
|
1184
|
+
if (len > sizeof (str_st_)) {
|
|
1185
|
+
str_ = static_cast<char*>(malloc(len));
|
|
1186
|
+
assert(str_ != 0);
|
|
1187
|
+
}
|
|
1188
|
+
#if NODE_MAJOR_VERSION >= 11
|
|
1189
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 13 || \
|
|
1190
|
+
(V8_MAJOR_VERSION == 13 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 4))
|
|
1191
|
+
length_ = string->WriteUtf8V2(v8::Isolate::GetCurrent(), str_,
|
|
1192
|
+
static_cast<int>(len), imp::kReplaceInvalidUtf8);
|
|
1193
|
+
#else
|
|
1194
|
+
const int flags =
|
|
1195
|
+
v8::String::NO_NULL_TERMINATION | imp::kReplaceInvalidUtf8;
|
|
1196
|
+
length_ = string->WriteUtf8(v8::Isolate::GetCurrent(), str_,
|
|
1197
|
+
static_cast<int>(len), 0, flags);
|
|
1198
|
+
#endif
|
|
1199
|
+
|
|
1200
|
+
#else
|
|
1201
|
+
// See https://github.com/nodejs/nan/issues/832.
|
|
1202
|
+
// Disable the warning as there is no way around it.
|
|
1203
|
+
#ifdef _MSC_VER
|
|
1204
|
+
#pragma warning(push)
|
|
1205
|
+
#pragma warning(disable : 4996)
|
|
1206
|
+
#endif
|
|
1207
|
+
#ifdef __GNUC__
|
|
1208
|
+
#pragma GCC diagnostic push
|
|
1209
|
+
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
1210
|
+
#endif
|
|
1211
|
+
const int flags =
|
|
1212
|
+
v8::String::NO_NULL_TERMINATION | imp::kReplaceInvalidUtf8;
|
|
1213
|
+
length_ = string->WriteUtf8(str_, static_cast<int>(len), 0, flags);
|
|
1214
|
+
#ifdef __GNUC__
|
|
1215
|
+
#pragma GCC diagnostic pop
|
|
1216
|
+
#endif
|
|
1217
|
+
#ifdef _MSC_VER
|
|
1218
|
+
#pragma warning(pop)
|
|
1219
|
+
#endif
|
|
1220
|
+
#endif // NODE_MAJOR_VERSION < 11
|
|
1221
|
+
str_[length_] = '\0';
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
inline int length() const {
|
|
1227
|
+
return length_;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
inline char* operator*() { return str_; }
|
|
1231
|
+
inline const char* operator*() const { return str_; }
|
|
1232
|
+
|
|
1233
|
+
inline ~Utf8String() {
|
|
1234
|
+
if (str_ != str_st_) {
|
|
1235
|
+
free(str_);
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
private:
|
|
1240
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(Utf8String)
|
|
1241
|
+
|
|
1242
|
+
int length_;
|
|
1243
|
+
char *str_;
|
|
1244
|
+
char str_st_[1024];
|
|
1245
|
+
};
|
|
1246
|
+
|
|
1247
|
+
#else // Node 0.8 and 0.10
|
|
1248
|
+
inline v8::Local<v8::Primitive> Undefined() {
|
|
1249
|
+
EscapableHandleScope scope;
|
|
1250
|
+
return scope.Escape(New(v8::Undefined()));
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
inline v8::Local<v8::Primitive> Null() {
|
|
1254
|
+
EscapableHandleScope scope;
|
|
1255
|
+
return scope.Escape(New(v8::Null()));
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
inline v8::Local<v8::Boolean> True() {
|
|
1259
|
+
EscapableHandleScope scope;
|
|
1260
|
+
return scope.Escape(New(v8::True()));
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
inline v8::Local<v8::Boolean> False() {
|
|
1264
|
+
EscapableHandleScope scope;
|
|
1265
|
+
return scope.Escape(New(v8::False()));
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
inline v8::Local<v8::String> EmptyString() {
|
|
1269
|
+
return v8::String::Empty();
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
inline int AdjustExternalMemory(int bc) {
|
|
1273
|
+
return static_cast<int>(v8::V8::AdjustAmountOfExternalAllocatedMemory(bc));
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
inline void SetTemplate(
|
|
1277
|
+
v8::Local<v8::Template> templ
|
|
1278
|
+
, const char *name
|
|
1279
|
+
, v8::Local<v8::Data> value) {
|
|
1280
|
+
templ->Set(name, value);
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
inline void SetTemplate(
|
|
1284
|
+
v8::Local<v8::Template> templ
|
|
1285
|
+
, v8::Local<v8::String> name
|
|
1286
|
+
, v8::Local<v8::Data> value
|
|
1287
|
+
, v8::PropertyAttribute attributes) {
|
|
1288
|
+
templ->Set(name, value, attributes);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
inline v8::Local<v8::Context> GetCurrentContext() {
|
|
1292
|
+
return v8::Context::GetCurrent();
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
inline void* GetInternalFieldPointer(
|
|
1296
|
+
v8::Local<v8::Object> object
|
|
1297
|
+
, int index) {
|
|
1298
|
+
return object->GetPointerFromInternalField(index);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
inline void SetInternalFieldPointer(
|
|
1302
|
+
v8::Local<v8::Object> object
|
|
1303
|
+
, int index
|
|
1304
|
+
, void* value) {
|
|
1305
|
+
object->SetPointerInInternalField(index, value);
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
# define NAN_GC_CALLBACK(name) \
|
|
1309
|
+
void name(v8::GCType type, v8::GCCallbackFlags flags)
|
|
1310
|
+
|
|
1311
|
+
inline void AddGCEpilogueCallback(
|
|
1312
|
+
v8::GCEpilogueCallback callback
|
|
1313
|
+
, v8::GCType gc_type_filter = v8::kGCTypeAll) {
|
|
1314
|
+
v8::V8::AddGCEpilogueCallback(callback, gc_type_filter);
|
|
1315
|
+
}
|
|
1316
|
+
inline void RemoveGCEpilogueCallback(
|
|
1317
|
+
v8::GCEpilogueCallback callback) {
|
|
1318
|
+
v8::V8::RemoveGCEpilogueCallback(callback);
|
|
1319
|
+
}
|
|
1320
|
+
inline void AddGCPrologueCallback(
|
|
1321
|
+
v8::GCPrologueCallback callback
|
|
1322
|
+
, v8::GCType gc_type_filter = v8::kGCTypeAll) {
|
|
1323
|
+
v8::V8::AddGCPrologueCallback(callback, gc_type_filter);
|
|
1324
|
+
}
|
|
1325
|
+
inline void RemoveGCPrologueCallback(
|
|
1326
|
+
v8::GCPrologueCallback callback) {
|
|
1327
|
+
v8::V8::RemoveGCPrologueCallback(callback);
|
|
1328
|
+
}
|
|
1329
|
+
inline void GetHeapStatistics(
|
|
1330
|
+
v8::HeapStatistics *heap_statistics) {
|
|
1331
|
+
v8::V8::GetHeapStatistics(heap_statistics);
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
# define X(NAME) \
|
|
1335
|
+
inline v8::Local<v8::Value> NAME(const char *msg) { \
|
|
1336
|
+
EscapableHandleScope scope; \
|
|
1337
|
+
return scope.Escape(v8::Exception::NAME(New(msg).ToLocalChecked())); \
|
|
1338
|
+
} \
|
|
1339
|
+
\
|
|
1340
|
+
inline \
|
|
1341
|
+
v8::Local<v8::Value> NAME(v8::Local<v8::String> msg) { \
|
|
1342
|
+
return v8::Exception::NAME(msg); \
|
|
1343
|
+
} \
|
|
1344
|
+
\
|
|
1345
|
+
inline void Throw ## NAME(const char *msg) { \
|
|
1346
|
+
HandleScope scope; \
|
|
1347
|
+
v8::ThrowException(v8::Exception::NAME(New(msg).ToLocalChecked())); \
|
|
1348
|
+
} \
|
|
1349
|
+
\
|
|
1350
|
+
inline \
|
|
1351
|
+
void Throw ## NAME(v8::Local<v8::String> errmsg) { \
|
|
1352
|
+
HandleScope scope; \
|
|
1353
|
+
v8::ThrowException(v8::Exception::NAME(errmsg)); \
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
X(Error)
|
|
1357
|
+
X(RangeError)
|
|
1358
|
+
X(ReferenceError)
|
|
1359
|
+
X(SyntaxError)
|
|
1360
|
+
X(TypeError)
|
|
1361
|
+
|
|
1362
|
+
# undef X
|
|
1363
|
+
|
|
1364
|
+
inline void ThrowError(v8::Local<v8::Value> error) {
|
|
1365
|
+
v8::ThrowException(error);
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
inline MaybeLocal<v8::Object> NewBuffer(
|
|
1369
|
+
char *data
|
|
1370
|
+
, size_t length
|
|
1371
|
+
, node::Buffer::free_callback callback
|
|
1372
|
+
, void *hint
|
|
1373
|
+
) {
|
|
1374
|
+
EscapableHandleScope scope;
|
|
1375
|
+
// arbitrary buffer lengths requires
|
|
1376
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
1377
|
+
assert(length <= imp::kMaxLength && "too large buffer");
|
|
1378
|
+
return scope.Escape(
|
|
1379
|
+
New(node::Buffer::New(data, length, callback, hint)->handle_));
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
inline MaybeLocal<v8::Object> CopyBuffer(
|
|
1383
|
+
const char *data
|
|
1384
|
+
, uint32_t size
|
|
1385
|
+
) {
|
|
1386
|
+
EscapableHandleScope scope;
|
|
1387
|
+
// arbitrary buffer lengths requires
|
|
1388
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
1389
|
+
assert(size <= imp::kMaxLength && "too large buffer");
|
|
1390
|
+
#if NODE_MODULE_VERSION >= NODE_0_10_MODULE_VERSION
|
|
1391
|
+
return scope.Escape(New(node::Buffer::New(data, size)->handle_));
|
|
1392
|
+
#else
|
|
1393
|
+
return scope.Escape(
|
|
1394
|
+
New(node::Buffer::New(const_cast<char *>(data), size)->handle_));
|
|
1395
|
+
#endif
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
inline MaybeLocal<v8::Object> NewBuffer(uint32_t size) {
|
|
1399
|
+
// arbitrary buffer lengths requires
|
|
1400
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
1401
|
+
EscapableHandleScope scope;
|
|
1402
|
+
assert(size <= imp::kMaxLength && "too large buffer");
|
|
1403
|
+
return scope.Escape(New(node::Buffer::New(size)->handle_));
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
inline void FreeData(char *data, void *hint) {
|
|
1407
|
+
(void) hint; // unused
|
|
1408
|
+
delete[] data;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
inline MaybeLocal<v8::Object> NewBuffer(
|
|
1412
|
+
char* data
|
|
1413
|
+
, uint32_t size
|
|
1414
|
+
) {
|
|
1415
|
+
EscapableHandleScope scope;
|
|
1416
|
+
// arbitrary buffer lengths requires
|
|
1417
|
+
// NODE_MODULE_VERSION >= IOJS_3_0_MODULE_VERSION
|
|
1418
|
+
assert(size <= imp::kMaxLength && "too large buffer");
|
|
1419
|
+
return scope.Escape(
|
|
1420
|
+
New(node::Buffer::New(data, size, FreeData, NULL)->handle_));
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
namespace imp {
|
|
1424
|
+
inline void
|
|
1425
|
+
widenString(std::vector<uint16_t> *ws, const uint8_t *s, int l) {
|
|
1426
|
+
size_t len = static_cast<size_t>(l);
|
|
1427
|
+
if (l < 0) {
|
|
1428
|
+
len = strlen(reinterpret_cast<const char*>(s));
|
|
1429
|
+
}
|
|
1430
|
+
assert(len <= INT_MAX && "string too long");
|
|
1431
|
+
ws->resize(len);
|
|
1432
|
+
std::copy(s, s + len, ws->begin()); // NOLINT(build/include_what_you_use)
|
|
1433
|
+
}
|
|
1434
|
+
} // end of namespace imp
|
|
1435
|
+
|
|
1436
|
+
inline MaybeLocal<v8::String>
|
|
1437
|
+
NewOneByteString(const uint8_t * value, int length = -1) {
|
|
1438
|
+
std::vector<uint16_t> wideString; // NOLINT(build/include_what_you_use)
|
|
1439
|
+
imp::widenString(&wideString, value, length);
|
|
1440
|
+
return v8::String::New(wideString.data(),
|
|
1441
|
+
static_cast<int>(wideString.size()));
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
inline MaybeLocal<BoundScript> CompileScript(
|
|
1445
|
+
v8::Local<v8::String> s
|
|
1446
|
+
, const v8::ScriptOrigin& origin
|
|
1447
|
+
) {
|
|
1448
|
+
return v8::Script::Compile(s, const_cast<v8::ScriptOrigin *>(&origin));
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
inline MaybeLocal<BoundScript> CompileScript(
|
|
1452
|
+
v8::Local<v8::String> s
|
|
1453
|
+
) {
|
|
1454
|
+
return v8::Script::Compile(s);
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
inline
|
|
1458
|
+
MaybeLocal<v8::Value> RunScript(v8::Local<v8::Script> script) {
|
|
1459
|
+
return script->Run();
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
inline v8::Local<v8::Value> MakeCallback(
|
|
1463
|
+
v8::Local<v8::Object> target
|
|
1464
|
+
, v8::Local<v8::Function> func
|
|
1465
|
+
, int argc
|
|
1466
|
+
, v8::Local<v8::Value>* argv) {
|
|
1467
|
+
v8::HandleScope scope;
|
|
1468
|
+
return scope.Close(New(node::MakeCallback(target, func, argc, argv)));
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
inline v8::Local<v8::Value> MakeCallback(
|
|
1472
|
+
v8::Local<v8::Object> target
|
|
1473
|
+
, v8::Local<v8::String> symbol
|
|
1474
|
+
, int argc
|
|
1475
|
+
, v8::Local<v8::Value>* argv) {
|
|
1476
|
+
v8::HandleScope scope;
|
|
1477
|
+
return scope.Close(New(node::MakeCallback(target, symbol, argc, argv)));
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
inline v8::Local<v8::Value> MakeCallback(
|
|
1481
|
+
v8::Local<v8::Object> target
|
|
1482
|
+
, const char* method
|
|
1483
|
+
, int argc
|
|
1484
|
+
, v8::Local<v8::Value>* argv) {
|
|
1485
|
+
v8::HandleScope scope;
|
|
1486
|
+
return scope.Close(New(node::MakeCallback(target, method, argc, argv)));
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
inline void FatalException(const TryCatch& try_catch) {
|
|
1490
|
+
node::FatalException(const_cast<v8::TryCatch &>(try_catch.try_catch_));
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
inline v8::Local<v8::Value> ErrnoException(
|
|
1494
|
+
int errorno
|
|
1495
|
+
, const char* syscall = NULL
|
|
1496
|
+
, const char* message = NULL
|
|
1497
|
+
, const char* path = NULL) {
|
|
1498
|
+
return node::ErrnoException(errorno, syscall, message, path);
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> NanErrnoException(
|
|
1502
|
+
int errorno
|
|
1503
|
+
, const char* syscall = NULL
|
|
1504
|
+
, const char* message = NULL
|
|
1505
|
+
, const char* path = NULL) {
|
|
1506
|
+
return ErrnoException(errorno, syscall, message, path);
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
template<typename T>
|
|
1511
|
+
inline void SetIsolateData(
|
|
1512
|
+
v8::Isolate *isolate
|
|
1513
|
+
, T *data
|
|
1514
|
+
) {
|
|
1515
|
+
isolate->SetData(data);
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
template<typename T>
|
|
1519
|
+
inline T *GetIsolateData(
|
|
1520
|
+
v8::Isolate *isolate
|
|
1521
|
+
) {
|
|
1522
|
+
return static_cast<T*>(isolate->GetData());
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
class Utf8String {
|
|
1526
|
+
public:
|
|
1527
|
+
inline explicit Utf8String(v8::Local<v8::Value> from) :
|
|
1528
|
+
length_(0), str_(str_st_) {
|
|
1529
|
+
v8::HandleScope scope;
|
|
1530
|
+
if (!from.IsEmpty()) {
|
|
1531
|
+
v8::Local<v8::String> string = from->ToString();
|
|
1532
|
+
if (!string.IsEmpty()) {
|
|
1533
|
+
size_t len = 3 * string->Length() + 1;
|
|
1534
|
+
assert(len <= INT_MAX);
|
|
1535
|
+
if (len > sizeof (str_st_)) {
|
|
1536
|
+
str_ = static_cast<char*>(malloc(len));
|
|
1537
|
+
assert(str_ != 0);
|
|
1538
|
+
}
|
|
1539
|
+
const int flags =
|
|
1540
|
+
v8::String::NO_NULL_TERMINATION | imp::kReplaceInvalidUtf8;
|
|
1541
|
+
length_ = string->WriteUtf8(str_, static_cast<int>(len), 0, flags);
|
|
1542
|
+
str_[length_] = '\0';
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
inline int length() const {
|
|
1548
|
+
return length_;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
inline char* operator*() { return str_; }
|
|
1552
|
+
inline const char* operator*() const { return str_; }
|
|
1553
|
+
|
|
1554
|
+
inline ~Utf8String() {
|
|
1555
|
+
if (str_ != str_st_) {
|
|
1556
|
+
free(str_);
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
private:
|
|
1561
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(Utf8String)
|
|
1562
|
+
|
|
1563
|
+
int length_;
|
|
1564
|
+
char *str_;
|
|
1565
|
+
char str_st_[1024];
|
|
1566
|
+
};
|
|
1567
|
+
|
|
1568
|
+
#endif // NODE_MODULE_VERSION
|
|
1569
|
+
|
|
1570
|
+
typedef void (*FreeCallback)(char *data, void *hint);
|
|
1571
|
+
|
|
1572
|
+
typedef const FunctionCallbackInfo<v8::Value>& NAN_METHOD_ARGS_TYPE;
|
|
1573
|
+
typedef void NAN_METHOD_RETURN_TYPE;
|
|
1574
|
+
|
|
1575
|
+
typedef const PropertyCallbackInfo<v8::Value>& NAN_GETTER_ARGS_TYPE;
|
|
1576
|
+
typedef void NAN_GETTER_RETURN_TYPE;
|
|
1577
|
+
|
|
1578
|
+
typedef const PropertyCallbackInfo<void>& NAN_SETTER_ARGS_TYPE;
|
|
1579
|
+
typedef void NAN_SETTER_RETURN_TYPE;
|
|
1580
|
+
|
|
1581
|
+
typedef const PropertyCallbackInfo<v8::Value>&
|
|
1582
|
+
NAN_PROPERTY_GETTER_ARGS_TYPE;
|
|
1583
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1584
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1585
|
+
typedef v8::Intercepted NAN_PROPERTY_GETTER_RETURN_TYPE;
|
|
1586
|
+
#else
|
|
1587
|
+
typedef void NAN_PROPERTY_GETTER_RETURN_TYPE;
|
|
1588
|
+
#endif
|
|
1589
|
+
|
|
1590
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1591
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1592
|
+
typedef const PropertyCallbackInfo<void>&
|
|
1593
|
+
NAN_PROPERTY_SETTER_ARGS_TYPE;
|
|
1594
|
+
typedef v8::Intercepted NAN_PROPERTY_SETTER_RETURN_TYPE;
|
|
1595
|
+
#else
|
|
1596
|
+
typedef const PropertyCallbackInfo<v8::Value>&
|
|
1597
|
+
NAN_PROPERTY_SETTER_ARGS_TYPE;
|
|
1598
|
+
typedef void NAN_PROPERTY_SETTER_RETURN_TYPE;
|
|
1599
|
+
#endif
|
|
1600
|
+
|
|
1601
|
+
typedef const PropertyCallbackInfo<v8::Array>&
|
|
1602
|
+
NAN_PROPERTY_ENUMERATOR_ARGS_TYPE;
|
|
1603
|
+
typedef void NAN_PROPERTY_ENUMERATOR_RETURN_TYPE;
|
|
1604
|
+
|
|
1605
|
+
typedef const PropertyCallbackInfo<v8::Boolean>&
|
|
1606
|
+
NAN_PROPERTY_DELETER_ARGS_TYPE;
|
|
1607
|
+
|
|
1608
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1609
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1610
|
+
typedef v8::Intercepted NAN_PROPERTY_DELETER_RETURN_TYPE;
|
|
1611
|
+
#else
|
|
1612
|
+
typedef void NAN_PROPERTY_DELETER_RETURN_TYPE;
|
|
1613
|
+
#endif
|
|
1614
|
+
|
|
1615
|
+
|
|
1616
|
+
typedef const PropertyCallbackInfo<v8::Integer>&
|
|
1617
|
+
NAN_PROPERTY_QUERY_ARGS_TYPE;
|
|
1618
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1619
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1620
|
+
typedef v8::Intercepted NAN_PROPERTY_QUERY_RETURN_TYPE;
|
|
1621
|
+
#else
|
|
1622
|
+
typedef void NAN_PROPERTY_QUERY_RETURN_TYPE;
|
|
1623
|
+
#endif
|
|
1624
|
+
|
|
1625
|
+
typedef const PropertyCallbackInfo<v8::Value>& NAN_INDEX_GETTER_ARGS_TYPE;
|
|
1626
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1627
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1628
|
+
typedef v8::Intercepted NAN_INDEX_GETTER_RETURN_TYPE;
|
|
1629
|
+
#else
|
|
1630
|
+
typedef void NAN_INDEX_GETTER_RETURN_TYPE;
|
|
1631
|
+
#endif
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1635
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1636
|
+
typedef const PropertyCallbackInfo<void>& NAN_INDEX_SETTER_ARGS_TYPE;
|
|
1637
|
+
typedef v8::Intercepted NAN_INDEX_SETTER_RETURN_TYPE;
|
|
1638
|
+
#else
|
|
1639
|
+
typedef const PropertyCallbackInfo<v8::Value>& NAN_INDEX_SETTER_ARGS_TYPE;
|
|
1640
|
+
typedef void NAN_INDEX_SETTER_RETURN_TYPE;
|
|
1641
|
+
#endif
|
|
1642
|
+
|
|
1643
|
+
typedef const PropertyCallbackInfo<v8::Array>&
|
|
1644
|
+
NAN_INDEX_ENUMERATOR_ARGS_TYPE;
|
|
1645
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1646
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1647
|
+
typedef v8::Intercepted NAN_INDEX_ENUMERATOR_RETURN_TYPE;
|
|
1648
|
+
#else
|
|
1649
|
+
typedef void NAN_INDEX_ENUMERATOR_RETURN_TYPE;
|
|
1650
|
+
#endif
|
|
1651
|
+
|
|
1652
|
+
typedef const PropertyCallbackInfo<v8::Boolean>&
|
|
1653
|
+
NAN_INDEX_DELETER_ARGS_TYPE;
|
|
1654
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1655
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1656
|
+
typedef v8::Intercepted NAN_INDEX_DELETER_RETURN_TYPE;
|
|
1657
|
+
#else
|
|
1658
|
+
typedef void NAN_INDEX_DELETER_RETURN_TYPE;
|
|
1659
|
+
#endif
|
|
1660
|
+
|
|
1661
|
+
typedef const PropertyCallbackInfo<v8::Integer>&
|
|
1662
|
+
NAN_INDEX_QUERY_ARGS_TYPE;
|
|
1663
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
1664
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
1665
|
+
typedef v8::Intercepted NAN_INDEX_QUERY_RETURN_TYPE;
|
|
1666
|
+
#else
|
|
1667
|
+
typedef void NAN_INDEX_QUERY_RETURN_TYPE;
|
|
1668
|
+
#endif
|
|
1669
|
+
|
|
1670
|
+
#define NAN_METHOD(name) \
|
|
1671
|
+
Nan::NAN_METHOD_RETURN_TYPE name(Nan::NAN_METHOD_ARGS_TYPE info)
|
|
1672
|
+
#define NAN_GETTER(name) \
|
|
1673
|
+
Nan::NAN_GETTER_RETURN_TYPE name( \
|
|
1674
|
+
v8::Local<v8::String> property \
|
|
1675
|
+
, Nan::NAN_GETTER_ARGS_TYPE info)
|
|
1676
|
+
#define NAN_SETTER(name) \
|
|
1677
|
+
Nan::NAN_SETTER_RETURN_TYPE name( \
|
|
1678
|
+
v8::Local<v8::String> property \
|
|
1679
|
+
, v8::Local<v8::Value> value \
|
|
1680
|
+
, Nan::NAN_SETTER_ARGS_TYPE info)
|
|
1681
|
+
#define NAN_PROPERTY_GETTER(name) \
|
|
1682
|
+
Nan::NAN_PROPERTY_GETTER_RETURN_TYPE name( \
|
|
1683
|
+
v8::Local<v8::String> property \
|
|
1684
|
+
, Nan::NAN_PROPERTY_GETTER_ARGS_TYPE info)
|
|
1685
|
+
#define NAN_PROPERTY_SETTER(name) \
|
|
1686
|
+
Nan::NAN_PROPERTY_SETTER_RETURN_TYPE name( \
|
|
1687
|
+
v8::Local<v8::String> property \
|
|
1688
|
+
, v8::Local<v8::Value> value \
|
|
1689
|
+
, Nan::NAN_PROPERTY_SETTER_ARGS_TYPE info)
|
|
1690
|
+
#define NAN_PROPERTY_ENUMERATOR(name) \
|
|
1691
|
+
Nan::NAN_PROPERTY_ENUMERATOR_RETURN_TYPE name( \
|
|
1692
|
+
Nan::NAN_PROPERTY_ENUMERATOR_ARGS_TYPE info)
|
|
1693
|
+
#define NAN_PROPERTY_DELETER(name) \
|
|
1694
|
+
Nan::NAN_PROPERTY_DELETER_RETURN_TYPE name( \
|
|
1695
|
+
v8::Local<v8::String> property \
|
|
1696
|
+
, Nan::NAN_PROPERTY_DELETER_ARGS_TYPE info)
|
|
1697
|
+
#define NAN_PROPERTY_QUERY(name) \
|
|
1698
|
+
Nan::NAN_PROPERTY_QUERY_RETURN_TYPE name( \
|
|
1699
|
+
v8::Local<v8::String> property \
|
|
1700
|
+
, Nan::NAN_PROPERTY_QUERY_ARGS_TYPE info)
|
|
1701
|
+
# define NAN_INDEX_GETTER(name) \
|
|
1702
|
+
Nan::NAN_INDEX_GETTER_RETURN_TYPE name( \
|
|
1703
|
+
uint32_t index \
|
|
1704
|
+
, Nan::NAN_INDEX_GETTER_ARGS_TYPE info)
|
|
1705
|
+
#define NAN_INDEX_SETTER(name) \
|
|
1706
|
+
Nan::NAN_INDEX_SETTER_RETURN_TYPE name( \
|
|
1707
|
+
uint32_t index \
|
|
1708
|
+
, v8::Local<v8::Value> value \
|
|
1709
|
+
, Nan::NAN_INDEX_SETTER_ARGS_TYPE info)
|
|
1710
|
+
#define NAN_INDEX_ENUMERATOR(name) \
|
|
1711
|
+
Nan::NAN_INDEX_ENUMERATOR_RETURN_TYPE \
|
|
1712
|
+
name(Nan::NAN_INDEX_ENUMERATOR_ARGS_TYPE info)
|
|
1713
|
+
#define NAN_INDEX_DELETER(name) \
|
|
1714
|
+
Nan::NAN_INDEX_DELETER_RETURN_TYPE name( \
|
|
1715
|
+
uint32_t index \
|
|
1716
|
+
, Nan::NAN_INDEX_DELETER_ARGS_TYPE info)
|
|
1717
|
+
#define NAN_INDEX_QUERY(name) \
|
|
1718
|
+
Nan::NAN_INDEX_QUERY_RETURN_TYPE name( \
|
|
1719
|
+
uint32_t index \
|
|
1720
|
+
, Nan::NAN_INDEX_QUERY_ARGS_TYPE info)
|
|
1721
|
+
|
|
1722
|
+
class Callback {
|
|
1723
|
+
public:
|
|
1724
|
+
Callback() {}
|
|
1725
|
+
|
|
1726
|
+
explicit Callback(const v8::Local<v8::Function> &fn) : handle_(fn) {}
|
|
1727
|
+
|
|
1728
|
+
~Callback() {
|
|
1729
|
+
handle_.Reset();
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
bool operator==(const Callback &other) const {
|
|
1733
|
+
return handle_ == other.handle_;
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
bool operator!=(const Callback &other) const {
|
|
1737
|
+
return !operator==(other);
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
inline
|
|
1741
|
+
v8::Local<v8::Function> operator*() const { return GetFunction(); }
|
|
1742
|
+
|
|
1743
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> operator()(
|
|
1744
|
+
v8::Local<v8::Object> target
|
|
1745
|
+
, int argc = 0
|
|
1746
|
+
, v8::Local<v8::Value> argv[] = 0) const {
|
|
1747
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1748
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1749
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1750
|
+
AsyncResource async("nan:Callback:operator()");
|
|
1751
|
+
return Call_(isolate, target, argc, argv, &async)
|
|
1752
|
+
.FromMaybe(v8::Local<v8::Value>());
|
|
1753
|
+
# else
|
|
1754
|
+
return Call_(isolate, target, argc, argv);
|
|
1755
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1756
|
+
#else
|
|
1757
|
+
return Call_(target, argc, argv);
|
|
1758
|
+
#endif // NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
NAN_DEPRECATED inline v8::Local<v8::Value> operator()(
|
|
1762
|
+
int argc = 0
|
|
1763
|
+
, v8::Local<v8::Value> argv[] = 0) const {
|
|
1764
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1765
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1766
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1767
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1768
|
+
AsyncResource async("nan:Callback:operator()");
|
|
1769
|
+
return scope.Escape(Call_(isolate, isolate->GetCurrentContext()->Global(),
|
|
1770
|
+
argc, argv, &async)
|
|
1771
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
1772
|
+
# else
|
|
1773
|
+
return scope.Escape(
|
|
1774
|
+
Call_(isolate, isolate->GetCurrentContext()->Global(), argc, argv));
|
|
1775
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1776
|
+
#else
|
|
1777
|
+
v8::HandleScope scope;
|
|
1778
|
+
return scope.Close(Call_(v8::Context::GetCurrent()->Global(), argc, argv));
|
|
1779
|
+
#endif // NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
inline MaybeLocal<v8::Value> operator()(
|
|
1783
|
+
AsyncResource* resource
|
|
1784
|
+
, int argc = 0
|
|
1785
|
+
, v8::Local<v8::Value> argv[] = 0) const {
|
|
1786
|
+
return this->Call(argc, argv, resource);
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
inline MaybeLocal<v8::Value> operator()(
|
|
1790
|
+
AsyncResource* resource
|
|
1791
|
+
, v8::Local<v8::Object> target
|
|
1792
|
+
, int argc = 0
|
|
1793
|
+
, v8::Local<v8::Value> argv[] = 0) const {
|
|
1794
|
+
return this->Call(target, argc, argv, resource);
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
// TODO(kkoopa): remove
|
|
1798
|
+
inline void SetFunction(const v8::Local<v8::Function> &fn) {
|
|
1799
|
+
Reset(fn);
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
inline void Reset(const v8::Local<v8::Function> &fn) {
|
|
1803
|
+
handle_.Reset(fn);
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
inline void Reset() {
|
|
1807
|
+
handle_.Reset();
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
inline v8::Local<v8::Function> GetFunction() const {
|
|
1811
|
+
return New(handle_);
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
inline bool IsEmpty() const {
|
|
1815
|
+
return handle_.IsEmpty();
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
// Deprecated: For async callbacks Use the versions that accept an
|
|
1819
|
+
// AsyncResource. If this callback does not correspond to an async resource,
|
|
1820
|
+
// that is, it is a synchronous function call on a non-empty JS stack, you
|
|
1821
|
+
// should Nan::Call instead.
|
|
1822
|
+
NAN_DEPRECATED inline v8::Local<v8::Value>
|
|
1823
|
+
Call(v8::Local<v8::Object> target
|
|
1824
|
+
, int argc
|
|
1825
|
+
, v8::Local<v8::Value> argv[]) const {
|
|
1826
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1827
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1828
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1829
|
+
AsyncResource async("nan:Callback:Call");
|
|
1830
|
+
return Call_(isolate, target, argc, argv, &async)
|
|
1831
|
+
.FromMaybe(v8::Local<v8::Value>());
|
|
1832
|
+
# else
|
|
1833
|
+
return Call_(isolate, target, argc, argv);
|
|
1834
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1835
|
+
#else
|
|
1836
|
+
return Call_(target, argc, argv);
|
|
1837
|
+
#endif
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
// Deprecated: For async callbacks Use the versions that accept an
|
|
1841
|
+
// AsyncResource. If this callback does not correspond to an async resource,
|
|
1842
|
+
// that is, it is a synchronous function call on a non-empty JS stack, you
|
|
1843
|
+
// should Nan::Call instead.
|
|
1844
|
+
NAN_DEPRECATED inline v8::Local<v8::Value>
|
|
1845
|
+
Call(int argc, v8::Local<v8::Value> argv[]) const {
|
|
1846
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1847
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1848
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1849
|
+
# if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1850
|
+
AsyncResource async("nan:Callback:Call");
|
|
1851
|
+
return scope.Escape(Call_(isolate, isolate->GetCurrentContext()->Global(),
|
|
1852
|
+
argc, argv, &async)
|
|
1853
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
1854
|
+
# else
|
|
1855
|
+
return scope.Escape(
|
|
1856
|
+
Call_(isolate, isolate->GetCurrentContext()->Global(), argc, argv));
|
|
1857
|
+
# endif // NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1858
|
+
#else
|
|
1859
|
+
v8::HandleScope scope;
|
|
1860
|
+
return scope.Close(Call_(v8::Context::GetCurrent()->Global(), argc, argv));
|
|
1861
|
+
#endif
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
inline MaybeLocal<v8::Value>
|
|
1865
|
+
Call(v8::Local<v8::Object> target
|
|
1866
|
+
, int argc
|
|
1867
|
+
, v8::Local<v8::Value> argv[]
|
|
1868
|
+
, AsyncResource* resource) const {
|
|
1869
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1870
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
1871
|
+
return Call_(isolate, target, argc, argv, resource);
|
|
1872
|
+
#elif NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1873
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1874
|
+
return Call_(isolate, target, argc, argv);
|
|
1875
|
+
#else
|
|
1876
|
+
return Call_(target, argc, argv);
|
|
1877
|
+
#endif
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
inline MaybeLocal<v8::Value>
|
|
1881
|
+
Call(int argc, v8::Local<v8::Value> argv[], AsyncResource* resource) const {
|
|
1882
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1883
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
1884
|
+
return Call(isolate->GetCurrentContext()->Global(), argc, argv, resource);
|
|
1885
|
+
#elif NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1886
|
+
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
|
1887
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1888
|
+
return scope.Escape(
|
|
1889
|
+
Call_(isolate, isolate->GetCurrentContext()->Global(), argc, argv));
|
|
1890
|
+
#else
|
|
1891
|
+
v8::HandleScope scope;
|
|
1892
|
+
return scope.Close(Call_(v8::Context::GetCurrent()->Global(), argc, argv));
|
|
1893
|
+
#endif
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
private:
|
|
1897
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(Callback)
|
|
1898
|
+
Persistent<v8::Function> handle_;
|
|
1899
|
+
|
|
1900
|
+
#if NODE_MODULE_VERSION >= NODE_9_0_MODULE_VERSION
|
|
1901
|
+
MaybeLocal<v8::Value> Call_(v8::Isolate *isolate
|
|
1902
|
+
, v8::Local<v8::Object> target
|
|
1903
|
+
, int argc
|
|
1904
|
+
, v8::Local<v8::Value> argv[]
|
|
1905
|
+
, AsyncResource* resource) const {
|
|
1906
|
+
EscapableHandleScope scope;
|
|
1907
|
+
v8::Local<v8::Function> func = New(handle_);
|
|
1908
|
+
auto maybe = resource->runInAsyncScope(target, func, argc, argv);
|
|
1909
|
+
v8::Local<v8::Value> local;
|
|
1910
|
+
if (!maybe.ToLocal(&local)) return MaybeLocal<v8::Value>();
|
|
1911
|
+
return scope.Escape(local);
|
|
1912
|
+
}
|
|
1913
|
+
#elif NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1914
|
+
v8::Local<v8::Value> Call_(v8::Isolate *isolate
|
|
1915
|
+
, v8::Local<v8::Object> target
|
|
1916
|
+
, int argc
|
|
1917
|
+
, v8::Local<v8::Value> argv[]) const {
|
|
1918
|
+
EscapableHandleScope scope;
|
|
1919
|
+
|
|
1920
|
+
v8::Local<v8::Function> callback = New(handle_);
|
|
1921
|
+
# if NODE_MODULE_VERSION < IOJS_3_0_MODULE_VERSION
|
|
1922
|
+
return scope.Escape(New(node::MakeCallback(
|
|
1923
|
+
isolate
|
|
1924
|
+
, target
|
|
1925
|
+
, callback
|
|
1926
|
+
, argc
|
|
1927
|
+
, argv
|
|
1928
|
+
)));
|
|
1929
|
+
# else
|
|
1930
|
+
return scope.Escape(node::MakeCallback(
|
|
1931
|
+
isolate
|
|
1932
|
+
, target
|
|
1933
|
+
, callback
|
|
1934
|
+
, argc
|
|
1935
|
+
, argv
|
|
1936
|
+
));
|
|
1937
|
+
# endif
|
|
1938
|
+
}
|
|
1939
|
+
#else
|
|
1940
|
+
v8::Local<v8::Value> Call_(v8::Local<v8::Object> target
|
|
1941
|
+
, int argc
|
|
1942
|
+
, v8::Local<v8::Value> argv[]) const {
|
|
1943
|
+
EscapableHandleScope scope;
|
|
1944
|
+
|
|
1945
|
+
v8::Local<v8::Function> callback = New(handle_);
|
|
1946
|
+
return scope.Escape(New(node::MakeCallback(
|
|
1947
|
+
target
|
|
1948
|
+
, callback
|
|
1949
|
+
, argc
|
|
1950
|
+
, argv
|
|
1951
|
+
)));
|
|
1952
|
+
}
|
|
1953
|
+
#endif
|
|
1954
|
+
};
|
|
1955
|
+
|
|
1956
|
+
inline MaybeLocal<v8::Value> Call(
|
|
1957
|
+
const Nan::Callback& callback
|
|
1958
|
+
, v8::Local<v8::Object> recv
|
|
1959
|
+
, int argc
|
|
1960
|
+
, v8::Local<v8::Value> argv[]) {
|
|
1961
|
+
return Call(*callback, recv, argc, argv);
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
inline MaybeLocal<v8::Value> Call(
|
|
1965
|
+
const Nan::Callback& callback
|
|
1966
|
+
, int argc
|
|
1967
|
+
, v8::Local<v8::Value> argv[]) {
|
|
1968
|
+
#if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
|
|
1969
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
1970
|
+
v8::EscapableHandleScope scope(isolate);
|
|
1971
|
+
return scope.Escape(
|
|
1972
|
+
Call(*callback, isolate->GetCurrentContext()->Global(), argc, argv)
|
|
1973
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
1974
|
+
#else
|
|
1975
|
+
EscapableHandleScope scope;
|
|
1976
|
+
return scope.Escape(
|
|
1977
|
+
Call(*callback, v8::Context::GetCurrent()->Global(), argc, argv)
|
|
1978
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
1979
|
+
#endif
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
inline MaybeLocal<v8::Value> Call(
|
|
1983
|
+
v8::Local<v8::String> symbol
|
|
1984
|
+
, v8::Local<v8::Object> recv
|
|
1985
|
+
, int argc
|
|
1986
|
+
, v8::Local<v8::Value> argv[]) {
|
|
1987
|
+
EscapableHandleScope scope;
|
|
1988
|
+
v8::Local<v8::Value> fn_v =
|
|
1989
|
+
Get(recv, symbol).FromMaybe(v8::Local<v8::Value>());
|
|
1990
|
+
if (fn_v.IsEmpty() || !fn_v->IsFunction()) return v8::Local<v8::Value>();
|
|
1991
|
+
v8::Local<v8::Function> fn = fn_v.As<v8::Function>();
|
|
1992
|
+
return scope.Escape(
|
|
1993
|
+
Call(fn, recv, argc, argv).FromMaybe(v8::Local<v8::Value>()));
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
inline MaybeLocal<v8::Value> Call(
|
|
1997
|
+
const char* method
|
|
1998
|
+
, v8::Local<v8::Object> recv
|
|
1999
|
+
, int argc
|
|
2000
|
+
, v8::Local<v8::Value> argv[]) {
|
|
2001
|
+
EscapableHandleScope scope;
|
|
2002
|
+
v8::Local<v8::String> method_string =
|
|
2003
|
+
New<v8::String>(method).ToLocalChecked();
|
|
2004
|
+
return scope.Escape(
|
|
2005
|
+
Call(method_string, recv, argc, argv).FromMaybe(v8::Local<v8::Value>()));
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
/* abstract */ class AsyncWorker {
|
|
2009
|
+
public:
|
|
2010
|
+
explicit AsyncWorker(Callback *callback_,
|
|
2011
|
+
const char* resource_name = "nan:AsyncWorker")
|
|
2012
|
+
: callback(callback_), errmsg_(NULL) {
|
|
2013
|
+
request.data = this;
|
|
2014
|
+
|
|
2015
|
+
HandleScope scope;
|
|
2016
|
+
v8::Local<v8::Object> obj = New<v8::Object>();
|
|
2017
|
+
persistentHandle.Reset(obj);
|
|
2018
|
+
async_resource = new AsyncResource(resource_name, obj);
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
virtual ~AsyncWorker() {
|
|
2022
|
+
HandleScope scope;
|
|
2023
|
+
|
|
2024
|
+
if (!persistentHandle.IsEmpty())
|
|
2025
|
+
persistentHandle.Reset();
|
|
2026
|
+
delete callback;
|
|
2027
|
+
delete[] errmsg_;
|
|
2028
|
+
delete async_resource;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
virtual void WorkComplete() {
|
|
2032
|
+
HandleScope scope;
|
|
2033
|
+
|
|
2034
|
+
if (errmsg_ == NULL)
|
|
2035
|
+
HandleOKCallback();
|
|
2036
|
+
else
|
|
2037
|
+
HandleErrorCallback();
|
|
2038
|
+
delete callback;
|
|
2039
|
+
callback = NULL;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
inline void SaveToPersistent(
|
|
2043
|
+
const char *key, const v8::Local<v8::Value> &value) {
|
|
2044
|
+
HandleScope scope;
|
|
2045
|
+
Set(New(persistentHandle), New(key).ToLocalChecked(), value).FromJust();
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
inline void SaveToPersistent(
|
|
2049
|
+
const v8::Local<v8::String> &key, const v8::Local<v8::Value> &value) {
|
|
2050
|
+
HandleScope scope;
|
|
2051
|
+
Set(New(persistentHandle), key, value).FromJust();
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
inline void SaveToPersistent(
|
|
2055
|
+
uint32_t index, const v8::Local<v8::Value> &value) {
|
|
2056
|
+
HandleScope scope;
|
|
2057
|
+
Set(New(persistentHandle), index, value).FromJust();
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
inline v8::Local<v8::Value> GetFromPersistent(const char *key) const {
|
|
2061
|
+
EscapableHandleScope scope;
|
|
2062
|
+
return scope.Escape(
|
|
2063
|
+
Get(New(persistentHandle), New(key).ToLocalChecked())
|
|
2064
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2067
|
+
inline v8::Local<v8::Value>
|
|
2068
|
+
GetFromPersistent(const v8::Local<v8::String> &key) const {
|
|
2069
|
+
EscapableHandleScope scope;
|
|
2070
|
+
return scope.Escape(
|
|
2071
|
+
Get(New(persistentHandle), key)
|
|
2072
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
inline v8::Local<v8::Value> GetFromPersistent(uint32_t index) const {
|
|
2076
|
+
EscapableHandleScope scope;
|
|
2077
|
+
return scope.Escape(
|
|
2078
|
+
Get(New(persistentHandle), index)
|
|
2079
|
+
.FromMaybe(v8::Local<v8::Value>()));
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
virtual void Execute() = 0;
|
|
2083
|
+
|
|
2084
|
+
uv_work_t request;
|
|
2085
|
+
|
|
2086
|
+
virtual void Destroy() {
|
|
2087
|
+
delete this;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
protected:
|
|
2091
|
+
Persistent<v8::Object> persistentHandle;
|
|
2092
|
+
Callback *callback;
|
|
2093
|
+
AsyncResource *async_resource;
|
|
2094
|
+
|
|
2095
|
+
virtual void HandleOKCallback() {
|
|
2096
|
+
HandleScope scope;
|
|
2097
|
+
|
|
2098
|
+
callback->Call(0, NULL, async_resource);
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
virtual void HandleErrorCallback() {
|
|
2102
|
+
HandleScope scope;
|
|
2103
|
+
|
|
2104
|
+
v8::Local<v8::Value> argv[] = {
|
|
2105
|
+
v8::Exception::Error(New<v8::String>(ErrorMessage()).ToLocalChecked())
|
|
2106
|
+
};
|
|
2107
|
+
callback->Call(1, argv, async_resource);
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
void SetErrorMessage(const char *msg) {
|
|
2111
|
+
delete[] errmsg_;
|
|
2112
|
+
|
|
2113
|
+
size_t size = strlen(msg) + 1;
|
|
2114
|
+
errmsg_ = new char[size];
|
|
2115
|
+
memcpy(errmsg_, msg, size);
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
const char* ErrorMessage() const {
|
|
2119
|
+
return errmsg_;
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
private:
|
|
2123
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(AsyncWorker)
|
|
2124
|
+
char *errmsg_;
|
|
2125
|
+
};
|
|
2126
|
+
|
|
2127
|
+
/* abstract */ class AsyncBareProgressWorkerBase : public AsyncWorker {
|
|
2128
|
+
public:
|
|
2129
|
+
explicit AsyncBareProgressWorkerBase(
|
|
2130
|
+
Callback *callback_,
|
|
2131
|
+
const char* resource_name = "nan:AsyncBareProgressWorkerBase")
|
|
2132
|
+
: AsyncWorker(callback_, resource_name) {
|
|
2133
|
+
uv_async_init(
|
|
2134
|
+
GetCurrentEventLoop()
|
|
2135
|
+
, &async
|
|
2136
|
+
, AsyncProgress_
|
|
2137
|
+
);
|
|
2138
|
+
async.data = this;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
virtual ~AsyncBareProgressWorkerBase() {
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
virtual void WorkProgress() = 0;
|
|
2145
|
+
|
|
2146
|
+
virtual void Destroy() {
|
|
2147
|
+
uv_close(reinterpret_cast<uv_handle_t*>(&async), AsyncClose_);
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
private:
|
|
2151
|
+
inline static NAUV_WORK_CB(AsyncProgress_) {
|
|
2152
|
+
AsyncBareProgressWorkerBase *worker =
|
|
2153
|
+
static_cast<AsyncBareProgressWorkerBase*>(async->data);
|
|
2154
|
+
worker->WorkProgress();
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
inline static void AsyncClose_(uv_handle_t* handle) {
|
|
2158
|
+
AsyncBareProgressWorkerBase *worker =
|
|
2159
|
+
static_cast<AsyncBareProgressWorkerBase*>(handle->data);
|
|
2160
|
+
delete worker;
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
protected:
|
|
2164
|
+
uv_async_t async;
|
|
2165
|
+
};
|
|
2166
|
+
|
|
2167
|
+
template<class T>
|
|
2168
|
+
/* abstract */
|
|
2169
|
+
class AsyncBareProgressWorker : public AsyncBareProgressWorkerBase {
|
|
2170
|
+
public:
|
|
2171
|
+
explicit AsyncBareProgressWorker(
|
|
2172
|
+
Callback *callback_,
|
|
2173
|
+
const char* resource_name = "nan:AsyncBareProgressWorker")
|
|
2174
|
+
: AsyncBareProgressWorkerBase(callback_, resource_name) {
|
|
2175
|
+
uv_mutex_init(&async_lock);
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
virtual ~AsyncBareProgressWorker() {
|
|
2179
|
+
uv_mutex_destroy(&async_lock);
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
class ExecutionProgress {
|
|
2183
|
+
friend class AsyncBareProgressWorker;
|
|
2184
|
+
public:
|
|
2185
|
+
void Signal() const {
|
|
2186
|
+
uv_mutex_lock(&that_->async_lock);
|
|
2187
|
+
uv_async_send(&that_->async);
|
|
2188
|
+
uv_mutex_unlock(&that_->async_lock);
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
void Send(const T* data, size_t count) const {
|
|
2192
|
+
that_->SendProgress_(data, count);
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
private:
|
|
2196
|
+
explicit ExecutionProgress(AsyncBareProgressWorker *that) : that_(that) {}
|
|
2197
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(ExecutionProgress)
|
|
2198
|
+
AsyncBareProgressWorker* const that_;
|
|
2199
|
+
};
|
|
2200
|
+
|
|
2201
|
+
virtual void Execute(const ExecutionProgress& progress) = 0;
|
|
2202
|
+
virtual void HandleProgressCallback(const T *data, size_t size) = 0;
|
|
2203
|
+
|
|
2204
|
+
protected:
|
|
2205
|
+
uv_mutex_t async_lock;
|
|
2206
|
+
|
|
2207
|
+
private:
|
|
2208
|
+
void Execute() /*final override*/ {
|
|
2209
|
+
ExecutionProgress progress(this);
|
|
2210
|
+
Execute(progress);
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
virtual void SendProgress_(const T *data, size_t count) = 0;
|
|
2214
|
+
};
|
|
2215
|
+
|
|
2216
|
+
template<class T>
|
|
2217
|
+
/* abstract */
|
|
2218
|
+
class AsyncProgressWorkerBase : public AsyncBareProgressWorker<T> {
|
|
2219
|
+
public:
|
|
2220
|
+
explicit AsyncProgressWorkerBase(
|
|
2221
|
+
Callback *callback_,
|
|
2222
|
+
const char* resource_name = "nan:AsyncProgressWorkerBase")
|
|
2223
|
+
: AsyncBareProgressWorker<T>(callback_, resource_name), asyncdata_(NULL),
|
|
2224
|
+
asyncsize_(0) {
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
virtual ~AsyncProgressWorkerBase() {
|
|
2228
|
+
delete[] asyncdata_;
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2231
|
+
void WorkProgress() {
|
|
2232
|
+
uv_mutex_lock(&this->async_lock);
|
|
2233
|
+
T *data = asyncdata_;
|
|
2234
|
+
size_t size = asyncsize_;
|
|
2235
|
+
asyncdata_ = NULL;
|
|
2236
|
+
asyncsize_ = 0;
|
|
2237
|
+
uv_mutex_unlock(&this->async_lock);
|
|
2238
|
+
|
|
2239
|
+
// Don't send progress events after we've already completed.
|
|
2240
|
+
if (this->callback) {
|
|
2241
|
+
this->HandleProgressCallback(data, size);
|
|
2242
|
+
}
|
|
2243
|
+
delete[] data;
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
private:
|
|
2247
|
+
void SendProgress_(const T *data, size_t count) {
|
|
2248
|
+
T *new_data = new T[count];
|
|
2249
|
+
std::copy(data, data + count, new_data);
|
|
2250
|
+
|
|
2251
|
+
uv_mutex_lock(&this->async_lock);
|
|
2252
|
+
T *old_data = asyncdata_;
|
|
2253
|
+
asyncdata_ = new_data;
|
|
2254
|
+
asyncsize_ = count;
|
|
2255
|
+
uv_async_send(&this->async);
|
|
2256
|
+
uv_mutex_unlock(&this->async_lock);
|
|
2257
|
+
|
|
2258
|
+
delete[] old_data;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
T *asyncdata_;
|
|
2262
|
+
size_t asyncsize_;
|
|
2263
|
+
};
|
|
2264
|
+
|
|
2265
|
+
// This ensures compatibility to the previous un-templated AsyncProgressWorker
|
|
2266
|
+
// class definition.
|
|
2267
|
+
typedef AsyncProgressWorkerBase<char> AsyncProgressWorker;
|
|
2268
|
+
|
|
2269
|
+
template<class T>
|
|
2270
|
+
/* abstract */
|
|
2271
|
+
class AsyncBareProgressQueueWorker : public AsyncBareProgressWorkerBase {
|
|
2272
|
+
public:
|
|
2273
|
+
explicit AsyncBareProgressQueueWorker(
|
|
2274
|
+
Callback *callback_,
|
|
2275
|
+
const char* resource_name = "nan:AsyncBareProgressQueueWorker")
|
|
2276
|
+
: AsyncBareProgressWorkerBase(callback_, resource_name) {
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
virtual ~AsyncBareProgressQueueWorker() {
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
class ExecutionProgress {
|
|
2283
|
+
friend class AsyncBareProgressQueueWorker;
|
|
2284
|
+
public:
|
|
2285
|
+
void Send(const T* data, size_t count) const {
|
|
2286
|
+
that_->SendProgress_(data, count);
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
private:
|
|
2290
|
+
explicit ExecutionProgress(AsyncBareProgressQueueWorker *that)
|
|
2291
|
+
: that_(that) {}
|
|
2292
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(ExecutionProgress)
|
|
2293
|
+
AsyncBareProgressQueueWorker* const that_;
|
|
2294
|
+
};
|
|
2295
|
+
|
|
2296
|
+
virtual void Execute(const ExecutionProgress& progress) = 0;
|
|
2297
|
+
virtual void HandleProgressCallback(const T *data, size_t size) = 0;
|
|
2298
|
+
|
|
2299
|
+
private:
|
|
2300
|
+
void Execute() /*final override*/ {
|
|
2301
|
+
ExecutionProgress progress(this);
|
|
2302
|
+
Execute(progress);
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
virtual void SendProgress_(const T *data, size_t count) = 0;
|
|
2306
|
+
};
|
|
2307
|
+
|
|
2308
|
+
template<class T>
|
|
2309
|
+
/* abstract */
|
|
2310
|
+
class AsyncProgressQueueWorker : public AsyncBareProgressQueueWorker<T> {
|
|
2311
|
+
public:
|
|
2312
|
+
explicit AsyncProgressQueueWorker(
|
|
2313
|
+
Callback *callback_,
|
|
2314
|
+
const char* resource_name = "nan:AsyncProgressQueueWorker")
|
|
2315
|
+
: AsyncBareProgressQueueWorker<T>(callback_) {
|
|
2316
|
+
uv_mutex_init(&async_lock);
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
virtual ~AsyncProgressQueueWorker() {
|
|
2320
|
+
uv_mutex_lock(&async_lock);
|
|
2321
|
+
|
|
2322
|
+
while (!asyncdata_.empty()) {
|
|
2323
|
+
std::pair<T*, size_t> &datapair = asyncdata_.front();
|
|
2324
|
+
T *data = datapair.first;
|
|
2325
|
+
|
|
2326
|
+
asyncdata_.pop();
|
|
2327
|
+
|
|
2328
|
+
delete[] data;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
uv_mutex_unlock(&async_lock);
|
|
2332
|
+
uv_mutex_destroy(&async_lock);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
void WorkComplete() {
|
|
2336
|
+
WorkProgress();
|
|
2337
|
+
AsyncWorker::WorkComplete();
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
void WorkProgress() {
|
|
2341
|
+
uv_mutex_lock(&async_lock);
|
|
2342
|
+
|
|
2343
|
+
while (!asyncdata_.empty()) {
|
|
2344
|
+
std::pair<T*, size_t> &datapair = asyncdata_.front();
|
|
2345
|
+
|
|
2346
|
+
T *data = datapair.first;
|
|
2347
|
+
size_t size = datapair.second;
|
|
2348
|
+
|
|
2349
|
+
asyncdata_.pop();
|
|
2350
|
+
uv_mutex_unlock(&async_lock);
|
|
2351
|
+
|
|
2352
|
+
// Don't send progress events after we've already completed.
|
|
2353
|
+
if (this->callback) {
|
|
2354
|
+
this->HandleProgressCallback(data, size);
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2357
|
+
delete[] data;
|
|
2358
|
+
|
|
2359
|
+
uv_mutex_lock(&async_lock);
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
uv_mutex_unlock(&async_lock);
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
private:
|
|
2366
|
+
void SendProgress_(const T *data, size_t count) {
|
|
2367
|
+
T *new_data = new T[count];
|
|
2368
|
+
std::copy(data, data + count, new_data);
|
|
2369
|
+
|
|
2370
|
+
uv_mutex_lock(&async_lock);
|
|
2371
|
+
asyncdata_.push(std::pair<T*, size_t>(new_data, count));
|
|
2372
|
+
uv_mutex_unlock(&async_lock);
|
|
2373
|
+
|
|
2374
|
+
uv_async_send(&this->async);
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
uv_mutex_t async_lock;
|
|
2378
|
+
std::queue<std::pair<T*, size_t> > asyncdata_;
|
|
2379
|
+
};
|
|
2380
|
+
|
|
2381
|
+
inline void AsyncExecute (uv_work_t* req) {
|
|
2382
|
+
AsyncWorker *worker = static_cast<AsyncWorker*>(req->data);
|
|
2383
|
+
worker->Execute();
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
/* uv_after_work_cb has 1 argument before node-v0.9.4 and
|
|
2387
|
+
* 2 arguments since node-v0.9.4
|
|
2388
|
+
* https://github.com/libuv/libuv/commit/92fb84b751e18f032c02609467f44bfe927b80c5
|
|
2389
|
+
*/
|
|
2390
|
+
inline void AsyncExecuteComplete(uv_work_t *req) {
|
|
2391
|
+
AsyncWorker* worker = static_cast<AsyncWorker*>(req->data);
|
|
2392
|
+
worker->WorkComplete();
|
|
2393
|
+
worker->Destroy();
|
|
2394
|
+
}
|
|
2395
|
+
inline void AsyncExecuteComplete (uv_work_t* req, int status) {
|
|
2396
|
+
AsyncExecuteComplete(req);
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
inline void AsyncQueueWorker (AsyncWorker* worker) {
|
|
2400
|
+
uv_queue_work(
|
|
2401
|
+
GetCurrentEventLoop()
|
|
2402
|
+
, &worker->request
|
|
2403
|
+
, AsyncExecute
|
|
2404
|
+
, AsyncExecuteComplete
|
|
2405
|
+
);
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
namespace imp {
|
|
2409
|
+
|
|
2410
|
+
inline
|
|
2411
|
+
ExternalOneByteStringResource const*
|
|
2412
|
+
GetExternalResource(v8::Local<v8::String> str) {
|
|
2413
|
+
#if NODE_MODULE_VERSION < ATOM_0_21_MODULE_VERSION
|
|
2414
|
+
return str->GetExternalAsciiStringResource();
|
|
2415
|
+
#else
|
|
2416
|
+
return str->GetExternalOneByteStringResource();
|
|
2417
|
+
#endif
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
inline
|
|
2421
|
+
bool
|
|
2422
|
+
IsExternal(v8::Local<v8::String> str) {
|
|
2423
|
+
#if NODE_MODULE_VERSION < ATOM_0_21_MODULE_VERSION
|
|
2424
|
+
return str->IsExternalAscii();
|
|
2425
|
+
#else
|
|
2426
|
+
return str->IsExternalOneByte();
|
|
2427
|
+
#endif
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
} // end of namespace imp
|
|
2431
|
+
|
|
2432
|
+
enum Encoding {ASCII, UTF8, BASE64, UCS2, BINARY, HEX, BUFFER};
|
|
2433
|
+
|
|
2434
|
+
#if NODE_MODULE_VERSION < NODE_0_10_MODULE_VERSION
|
|
2435
|
+
# include "nan_string_bytes.h" // NOLINT(build/include)
|
|
2436
|
+
#endif
|
|
2437
|
+
|
|
2438
|
+
#if NODE_MAJOR_VERSION >= 24
|
|
2439
|
+
inline MaybeLocal<v8::Value> TryEncode(
|
|
2440
|
+
const void *buf, size_t len, enum Encoding encoding = BINARY) {
|
|
2441
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
2442
|
+
node::encoding node_enc = static_cast<node::encoding>(encoding);
|
|
2443
|
+
|
|
2444
|
+
if (encoding == UCS2) {
|
|
2445
|
+
return node::TryEncode(
|
|
2446
|
+
isolate
|
|
2447
|
+
, reinterpret_cast<const uint16_t *>(buf)
|
|
2448
|
+
, len / 2);
|
|
2449
|
+
} else {
|
|
2450
|
+
return node::TryEncode(
|
|
2451
|
+
isolate
|
|
2452
|
+
, reinterpret_cast<const char *>(buf)
|
|
2453
|
+
, len
|
|
2454
|
+
, node_enc);
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
inline v8::Local<v8::Value> Encode(
|
|
2459
|
+
const void *buf, size_t len, enum Encoding encoding = BINARY) {
|
|
2460
|
+
return TryEncode(buf, len, encoding).ToLocalChecked();
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
#else
|
|
2464
|
+
|
|
2465
|
+
inline v8::Local<v8::Value> Encode(
|
|
2466
|
+
const void *buf, size_t len, enum Encoding encoding = BINARY) {
|
|
2467
|
+
#if (NODE_MODULE_VERSION >= ATOM_0_21_MODULE_VERSION)
|
|
2468
|
+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
2469
|
+
node::encoding node_enc = static_cast<node::encoding>(encoding);
|
|
2470
|
+
|
|
2471
|
+
if (encoding == UCS2) {
|
|
2472
|
+
return node::Encode(
|
|
2473
|
+
isolate
|
|
2474
|
+
, reinterpret_cast<const uint16_t *>(buf)
|
|
2475
|
+
, len / 2);
|
|
2476
|
+
} else {
|
|
2477
|
+
return node::Encode(
|
|
2478
|
+
isolate
|
|
2479
|
+
, reinterpret_cast<const char *>(buf)
|
|
2480
|
+
, len
|
|
2481
|
+
, node_enc);
|
|
2482
|
+
}
|
|
2483
|
+
#elif (NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION)
|
|
2484
|
+
return node::Encode(
|
|
2485
|
+
v8::Isolate::GetCurrent()
|
|
2486
|
+
, buf, len
|
|
2487
|
+
, static_cast<node::encoding>(encoding));
|
|
2488
|
+
#else
|
|
2489
|
+
# if NODE_MODULE_VERSION >= NODE_0_10_MODULE_VERSION
|
|
2490
|
+
return node::Encode(buf, len, static_cast<node::encoding>(encoding));
|
|
2491
|
+
# else
|
|
2492
|
+
return imp::Encode(reinterpret_cast<const char*>(buf), len, encoding);
|
|
2493
|
+
# endif
|
|
2494
|
+
#endif
|
|
2495
|
+
}
|
|
2496
|
+
#endif
|
|
2497
|
+
|
|
2498
|
+
inline ssize_t DecodeBytes(
|
|
2499
|
+
v8::Local<v8::Value> val, enum Encoding encoding = BINARY) {
|
|
2500
|
+
#if (NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION)
|
|
2501
|
+
return node::DecodeBytes(
|
|
2502
|
+
v8::Isolate::GetCurrent()
|
|
2503
|
+
, val
|
|
2504
|
+
, static_cast<node::encoding>(encoding));
|
|
2505
|
+
#else
|
|
2506
|
+
# if (NODE_MODULE_VERSION < NODE_0_10_MODULE_VERSION)
|
|
2507
|
+
if (encoding == BUFFER) {
|
|
2508
|
+
return node::DecodeBytes(val, node::BINARY);
|
|
2509
|
+
}
|
|
2510
|
+
# endif
|
|
2511
|
+
return node::DecodeBytes(val, static_cast<node::encoding>(encoding));
|
|
2512
|
+
#endif
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
inline ssize_t DecodeWrite(
|
|
2516
|
+
char *buf
|
|
2517
|
+
, size_t len
|
|
2518
|
+
, v8::Local<v8::Value> val
|
|
2519
|
+
, enum Encoding encoding = BINARY) {
|
|
2520
|
+
#if (NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION)
|
|
2521
|
+
return node::DecodeWrite(
|
|
2522
|
+
v8::Isolate::GetCurrent()
|
|
2523
|
+
, buf
|
|
2524
|
+
, len
|
|
2525
|
+
, val
|
|
2526
|
+
, static_cast<node::encoding>(encoding));
|
|
2527
|
+
#else
|
|
2528
|
+
# if (NODE_MODULE_VERSION < NODE_0_10_MODULE_VERSION)
|
|
2529
|
+
if (encoding == BUFFER) {
|
|
2530
|
+
return node::DecodeWrite(buf, len, val, node::BINARY);
|
|
2531
|
+
}
|
|
2532
|
+
# endif
|
|
2533
|
+
return node::DecodeWrite(
|
|
2534
|
+
buf
|
|
2535
|
+
, len
|
|
2536
|
+
, val
|
|
2537
|
+
, static_cast<node::encoding>(encoding));
|
|
2538
|
+
#endif
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
inline void SetPrototypeTemplate(
|
|
2542
|
+
v8::Local<v8::FunctionTemplate> templ
|
|
2543
|
+
, const char *name
|
|
2544
|
+
, v8::Local<v8::Data> value
|
|
2545
|
+
) {
|
|
2546
|
+
HandleScope scope;
|
|
2547
|
+
SetTemplate(templ->PrototypeTemplate(), name, value);
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
inline void SetPrototypeTemplate(
|
|
2551
|
+
v8::Local<v8::FunctionTemplate> templ
|
|
2552
|
+
, v8::Local<v8::String> name
|
|
2553
|
+
, v8::Local<v8::Data> value
|
|
2554
|
+
, v8::PropertyAttribute attributes
|
|
2555
|
+
) {
|
|
2556
|
+
HandleScope scope;
|
|
2557
|
+
SetTemplate(templ->PrototypeTemplate(), name, value, attributes);
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
inline void SetInstanceTemplate(
|
|
2561
|
+
v8::Local<v8::FunctionTemplate> templ
|
|
2562
|
+
, const char *name
|
|
2563
|
+
, v8::Local<v8::Data> value
|
|
2564
|
+
) {
|
|
2565
|
+
HandleScope scope;
|
|
2566
|
+
SetTemplate(templ->InstanceTemplate(), name, value);
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
inline void SetInstanceTemplate(
|
|
2570
|
+
v8::Local<v8::FunctionTemplate> templ
|
|
2571
|
+
, v8::Local<v8::String> name
|
|
2572
|
+
, v8::Local<v8::Data> value
|
|
2573
|
+
, v8::PropertyAttribute attributes
|
|
2574
|
+
) {
|
|
2575
|
+
HandleScope scope;
|
|
2576
|
+
SetTemplate(templ->InstanceTemplate(), name, value, attributes);
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
namespace imp {
|
|
2580
|
+
|
|
2581
|
+
// Note(@agnat): Helper to distinguish different receiver types. The first
|
|
2582
|
+
// version deals with receivers derived from v8::Template. The second version
|
|
2583
|
+
// handles everything else. The final argument only serves as discriminator and
|
|
2584
|
+
// is unused.
|
|
2585
|
+
template <typename T>
|
|
2586
|
+
inline
|
|
2587
|
+
void
|
|
2588
|
+
SetMethodAux(T recv,
|
|
2589
|
+
v8::Local<v8::String> name,
|
|
2590
|
+
v8::Local<v8::FunctionTemplate> tpl,
|
|
2591
|
+
v8::Template *) {
|
|
2592
|
+
recv->Set(name, tpl);
|
|
2593
|
+
}
|
|
2594
|
+
|
|
2595
|
+
template <typename T>
|
|
2596
|
+
inline
|
|
2597
|
+
void
|
|
2598
|
+
SetMethodAux(T recv,
|
|
2599
|
+
v8::Local<v8::String> name,
|
|
2600
|
+
v8::Local<v8::FunctionTemplate> tpl,
|
|
2601
|
+
...) {
|
|
2602
|
+
Set(recv, name, GetFunction(tpl).ToLocalChecked());
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
} // end of namespace imp
|
|
2606
|
+
|
|
2607
|
+
template <typename T, template <typename> class HandleType>
|
|
2608
|
+
inline void SetMethod(
|
|
2609
|
+
HandleType<T> recv
|
|
2610
|
+
, const char *name
|
|
2611
|
+
, FunctionCallback callback
|
|
2612
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()) {
|
|
2613
|
+
HandleScope scope;
|
|
2614
|
+
v8::Local<v8::FunctionTemplate> t = New<v8::FunctionTemplate>(callback, data);
|
|
2615
|
+
v8::Local<v8::String> fn_name = New(name).ToLocalChecked();
|
|
2616
|
+
t->SetClassName(fn_name);
|
|
2617
|
+
// Note(@agnat): Pass an empty T* as discriminator. See note on
|
|
2618
|
+
// SetMethodAux(...) above
|
|
2619
|
+
imp::SetMethodAux(recv, fn_name, t, static_cast<T*>(0));
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
inline void SetPrototypeMethod(
|
|
2623
|
+
v8::Local<v8::FunctionTemplate> recv
|
|
2624
|
+
, const char* name
|
|
2625
|
+
, FunctionCallback callback
|
|
2626
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()) {
|
|
2627
|
+
HandleScope scope;
|
|
2628
|
+
v8::Local<v8::FunctionTemplate> t = New<v8::FunctionTemplate>(
|
|
2629
|
+
callback
|
|
2630
|
+
, data
|
|
2631
|
+
, New<v8::Signature>(recv));
|
|
2632
|
+
v8::Local<v8::String> fn_name = New(name).ToLocalChecked();
|
|
2633
|
+
recv->PrototypeTemplate()->Set(fn_name, t);
|
|
2634
|
+
t->SetClassName(fn_name);
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
//=== Accessors and Such =======================================================
|
|
2638
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 14 \
|
|
2639
|
+
|| (V8_MAJOR_VERSION == 14 && defined(V8_MINOR_VERSION) \
|
|
2640
|
+
&& V8_MINOR_VERSION >= 2))
|
|
2641
|
+
|
|
2642
|
+
enum AccessControl {DEFAULT = 0};
|
|
2643
|
+
|
|
2644
|
+
inline void SetAccessor(
|
|
2645
|
+
v8::Local<v8::ObjectTemplate> tpl
|
|
2646
|
+
, v8::Local<v8::String> name
|
|
2647
|
+
, GetterCallback getter
|
|
2648
|
+
, SetterCallback setter = 0
|
|
2649
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()
|
|
2650
|
+
, enum AccessControl settings = DEFAULT
|
|
2651
|
+
, v8::PropertyAttribute attribute = v8::None) {
|
|
2652
|
+
HandleScope scope;
|
|
2653
|
+
|
|
2654
|
+
imp::NativeGetter getter_ =
|
|
2655
|
+
imp::GetterCallbackWrapper;
|
|
2656
|
+
imp::NativeSetter setter_ =
|
|
2657
|
+
setter ? imp::SetterCallbackWrapper : 0;
|
|
2658
|
+
|
|
2659
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2660
|
+
otpl->SetInternalFieldCount(imp::kAccessorFieldCount);
|
|
2661
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
2662
|
+
|
|
2663
|
+
obj->SetInternalField(
|
|
2664
|
+
imp::kGetterIndex
|
|
2665
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
2666
|
+
|
|
2667
|
+
if (setter != 0) {
|
|
2668
|
+
obj->SetInternalField(
|
|
2669
|
+
imp::kSetterIndex
|
|
2670
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
if (!data.IsEmpty()) {
|
|
2674
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
tpl->SetNativeDataProperty(
|
|
2678
|
+
name
|
|
2679
|
+
, getter_
|
|
2680
|
+
, setter_
|
|
2681
|
+
, obj
|
|
2682
|
+
, attribute
|
|
2683
|
+
);
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
inline bool SetAccessor(
|
|
2687
|
+
v8::Local<v8::Object> obj
|
|
2688
|
+
, v8::Local<v8::String> name
|
|
2689
|
+
, GetterCallback getter
|
|
2690
|
+
, SetterCallback setter = 0
|
|
2691
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()
|
|
2692
|
+
, enum AccessControl settings = DEFAULT
|
|
2693
|
+
, v8::PropertyAttribute attribute = v8::None) {
|
|
2694
|
+
HandleScope scope;
|
|
2695
|
+
|
|
2696
|
+
imp::NativeGetter getter_ =
|
|
2697
|
+
imp::GetterCallbackWrapper;
|
|
2698
|
+
imp::NativeSetter setter_ =
|
|
2699
|
+
setter ? imp::SetterCallbackWrapper : 0;
|
|
2700
|
+
|
|
2701
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2702
|
+
otpl->SetInternalFieldCount(imp::kAccessorFieldCount);
|
|
2703
|
+
v8::Local<v8::Object> dataobj = NewInstance(otpl).ToLocalChecked();
|
|
2704
|
+
|
|
2705
|
+
dataobj->SetInternalField(
|
|
2706
|
+
imp::kGetterIndex
|
|
2707
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
2708
|
+
|
|
2709
|
+
if (!data.IsEmpty()) {
|
|
2710
|
+
dataobj->SetInternalField(imp::kDataIndex, data);
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
if (setter) {
|
|
2714
|
+
dataobj->SetInternalField(
|
|
2715
|
+
imp::kSetterIndex
|
|
2716
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
2717
|
+
}
|
|
2718
|
+
return obj->SetNativeDataProperty(
|
|
2719
|
+
GetCurrentContext()
|
|
2720
|
+
, name
|
|
2721
|
+
, getter_
|
|
2722
|
+
, setter_
|
|
2723
|
+
, dataobj
|
|
2724
|
+
, attribute).FromMaybe(false);
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
#else
|
|
2728
|
+
|
|
2729
|
+
NAN_DEPRECATED inline void SetAccessor(
|
|
2730
|
+
v8::Local<v8::ObjectTemplate> tpl
|
|
2731
|
+
, v8::Local<v8::String> name
|
|
2732
|
+
, GetterCallback getter
|
|
2733
|
+
, SetterCallback setter
|
|
2734
|
+
, v8::Local<v8::Value> data
|
|
2735
|
+
, v8::AccessControl settings
|
|
2736
|
+
, v8::PropertyAttribute attribute
|
|
2737
|
+
, imp::Sig signature) {
|
|
2738
|
+
HandleScope scope;
|
|
2739
|
+
|
|
2740
|
+
imp::NativeGetter getter_ =
|
|
2741
|
+
imp::GetterCallbackWrapper;
|
|
2742
|
+
imp::NativeSetter setter_ =
|
|
2743
|
+
setter ? imp::SetterCallbackWrapper : 0;
|
|
2744
|
+
|
|
2745
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2746
|
+
otpl->SetInternalFieldCount(imp::kAccessorFieldCount);
|
|
2747
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
2748
|
+
|
|
2749
|
+
obj->SetInternalField(
|
|
2750
|
+
imp::kGetterIndex
|
|
2751
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
2752
|
+
|
|
2753
|
+
if (setter != 0) {
|
|
2754
|
+
obj->SetInternalField(
|
|
2755
|
+
imp::kSetterIndex
|
|
2756
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
if (!data.IsEmpty()) {
|
|
2760
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 \
|
|
2764
|
+
|| (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) \
|
|
2765
|
+
&& V8_MINOR_VERSION >= 5))
|
|
2766
|
+
tpl->SetNativeDataProperty(
|
|
2767
|
+
#else
|
|
2768
|
+
tpl->SetAccessor(
|
|
2769
|
+
#endif
|
|
2770
|
+
name
|
|
2771
|
+
, getter_
|
|
2772
|
+
, setter_
|
|
2773
|
+
, obj
|
|
2774
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION < 12 \
|
|
2775
|
+
|| (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) \
|
|
2776
|
+
&& V8_MINOR_VERSION == 0))
|
|
2777
|
+
, settings
|
|
2778
|
+
#endif
|
|
2779
|
+
, attribute
|
|
2780
|
+
#if (NODE_MODULE_VERSION < NODE_16_0_MODULE_VERSION)
|
|
2781
|
+
, signature
|
|
2782
|
+
#endif
|
|
2783
|
+
);
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
inline void SetAccessor(
|
|
2787
|
+
v8::Local<v8::ObjectTemplate> tpl
|
|
2788
|
+
, v8::Local<v8::String> name
|
|
2789
|
+
, GetterCallback getter
|
|
2790
|
+
, SetterCallback setter = 0
|
|
2791
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()
|
|
2792
|
+
, v8::AccessControl settings = v8::DEFAULT
|
|
2793
|
+
, v8::PropertyAttribute attribute = v8::None) {
|
|
2794
|
+
HandleScope scope;
|
|
2795
|
+
|
|
2796
|
+
imp::NativeGetter getter_ =
|
|
2797
|
+
imp::GetterCallbackWrapper;
|
|
2798
|
+
imp::NativeSetter setter_ =
|
|
2799
|
+
setter ? imp::SetterCallbackWrapper : 0;
|
|
2800
|
+
|
|
2801
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2802
|
+
otpl->SetInternalFieldCount(imp::kAccessorFieldCount);
|
|
2803
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
2804
|
+
|
|
2805
|
+
obj->SetInternalField(
|
|
2806
|
+
imp::kGetterIndex
|
|
2807
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
2808
|
+
|
|
2809
|
+
if (setter != 0) {
|
|
2810
|
+
obj->SetInternalField(
|
|
2811
|
+
imp::kSetterIndex
|
|
2812
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
if (!data.IsEmpty()) {
|
|
2816
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2819
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 \
|
|
2820
|
+
|| (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) \
|
|
2821
|
+
&& V8_MINOR_VERSION >= 5))
|
|
2822
|
+
tpl->SetNativeDataProperty(
|
|
2823
|
+
#else
|
|
2824
|
+
tpl->SetAccessor(
|
|
2825
|
+
#endif
|
|
2826
|
+
name
|
|
2827
|
+
, getter_
|
|
2828
|
+
, setter_
|
|
2829
|
+
, obj
|
|
2830
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION < 12 \
|
|
2831
|
+
|| (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) \
|
|
2832
|
+
&& V8_MINOR_VERSION == 0))
|
|
2833
|
+
, settings
|
|
2834
|
+
#endif
|
|
2835
|
+
, attribute
|
|
2836
|
+
);
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
inline bool SetAccessor(
|
|
2840
|
+
v8::Local<v8::Object> obj
|
|
2841
|
+
, v8::Local<v8::String> name
|
|
2842
|
+
, GetterCallback getter
|
|
2843
|
+
, SetterCallback setter = 0
|
|
2844
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()
|
|
2845
|
+
, v8::AccessControl settings = v8::DEFAULT
|
|
2846
|
+
, v8::PropertyAttribute attribute = v8::None) {
|
|
2847
|
+
HandleScope scope;
|
|
2848
|
+
|
|
2849
|
+
imp::NativeGetter getter_ =
|
|
2850
|
+
imp::GetterCallbackWrapper;
|
|
2851
|
+
imp::NativeSetter setter_ =
|
|
2852
|
+
setter ? imp::SetterCallbackWrapper : 0;
|
|
2853
|
+
|
|
2854
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2855
|
+
otpl->SetInternalFieldCount(imp::kAccessorFieldCount);
|
|
2856
|
+
v8::Local<v8::Object> dataobj = NewInstance(otpl).ToLocalChecked();
|
|
2857
|
+
|
|
2858
|
+
dataobj->SetInternalField(
|
|
2859
|
+
imp::kGetterIndex
|
|
2860
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
2861
|
+
|
|
2862
|
+
if (!data.IsEmpty()) {
|
|
2863
|
+
dataobj->SetInternalField(imp::kDataIndex, data);
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
if (setter) {
|
|
2867
|
+
dataobj->SetInternalField(
|
|
2868
|
+
imp::kSetterIndex
|
|
2869
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
#if (NODE_MODULE_VERSION >= NODE_6_0_MODULE_VERSION)
|
|
2873
|
+
#if defined(V8_MAJOR_VERSION) && \
|
|
2874
|
+
(V8_MAJOR_VERSION > 12 || \
|
|
2875
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && \
|
|
2876
|
+
V8_MINOR_VERSION >= 5))
|
|
2877
|
+
return obj->SetNativeDataProperty(
|
|
2878
|
+
GetCurrentContext()
|
|
2879
|
+
, name
|
|
2880
|
+
, getter_
|
|
2881
|
+
, setter_
|
|
2882
|
+
, dataobj
|
|
2883
|
+
, attribute).FromMaybe(false);
|
|
2884
|
+
#else
|
|
2885
|
+
return obj->SetAccessor(
|
|
2886
|
+
GetCurrentContext()
|
|
2887
|
+
, name
|
|
2888
|
+
, getter_
|
|
2889
|
+
, setter_
|
|
2890
|
+
, dataobj
|
|
2891
|
+
, settings
|
|
2892
|
+
, attribute).FromMaybe(false);
|
|
2893
|
+
#endif
|
|
2894
|
+
#else
|
|
2895
|
+
return obj->SetAccessor(
|
|
2896
|
+
name
|
|
2897
|
+
, getter_
|
|
2898
|
+
, setter_
|
|
2899
|
+
, dataobj
|
|
2900
|
+
, settings
|
|
2901
|
+
, attribute);
|
|
2902
|
+
#endif
|
|
2903
|
+
}
|
|
2904
|
+
#endif
|
|
2905
|
+
inline void SetNamedPropertyHandler(
|
|
2906
|
+
v8::Local<v8::ObjectTemplate> tpl
|
|
2907
|
+
, PropertyGetterCallback getter
|
|
2908
|
+
, PropertySetterCallback setter = 0
|
|
2909
|
+
, PropertyQueryCallback query = 0
|
|
2910
|
+
, PropertyDeleterCallback deleter = 0
|
|
2911
|
+
, PropertyEnumeratorCallback enumerator = 0
|
|
2912
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()) {
|
|
2913
|
+
HandleScope scope;
|
|
2914
|
+
|
|
2915
|
+
imp::NativePropertyGetter getter_ =
|
|
2916
|
+
imp::PropertyGetterCallbackWrapper;
|
|
2917
|
+
imp::NativePropertySetter setter_ =
|
|
2918
|
+
setter ? imp::PropertySetterCallbackWrapper : 0;
|
|
2919
|
+
imp::NativePropertyQuery query_ =
|
|
2920
|
+
query ? imp::PropertyQueryCallbackWrapper : 0;
|
|
2921
|
+
imp::NativePropertyDeleter *deleter_ =
|
|
2922
|
+
deleter ? imp::PropertyDeleterCallbackWrapper : 0;
|
|
2923
|
+
imp::NativePropertyEnumerator enumerator_ =
|
|
2924
|
+
enumerator ? imp::PropertyEnumeratorCallbackWrapper : 0;
|
|
2925
|
+
|
|
2926
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2927
|
+
otpl->SetInternalFieldCount(imp::kPropertyFieldCount);
|
|
2928
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
2929
|
+
obj->SetInternalField(
|
|
2930
|
+
imp::kPropertyGetterIndex
|
|
2931
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
2932
|
+
|
|
2933
|
+
if (setter) {
|
|
2934
|
+
obj->SetInternalField(
|
|
2935
|
+
imp::kPropertySetterIndex
|
|
2936
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
if (query) {
|
|
2940
|
+
obj->SetInternalField(
|
|
2941
|
+
imp::kPropertyQueryIndex
|
|
2942
|
+
, New<v8::External>(reinterpret_cast<void *>(query)));
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2945
|
+
if (deleter) {
|
|
2946
|
+
obj->SetInternalField(
|
|
2947
|
+
imp::kPropertyDeleterIndex
|
|
2948
|
+
, New<v8::External>(reinterpret_cast<void *>(deleter)));
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
if (enumerator) {
|
|
2952
|
+
obj->SetInternalField(
|
|
2953
|
+
imp::kPropertyEnumeratorIndex
|
|
2954
|
+
, New<v8::External>(reinterpret_cast<void *>(enumerator)));
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
if (!data.IsEmpty()) {
|
|
2958
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
#if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
|
|
2962
|
+
tpl->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
2963
|
+
getter_, setter_, query_, deleter_, enumerator_, obj));
|
|
2964
|
+
#else
|
|
2965
|
+
tpl->SetNamedPropertyHandler(
|
|
2966
|
+
getter_
|
|
2967
|
+
, setter_
|
|
2968
|
+
, query_
|
|
2969
|
+
, deleter_
|
|
2970
|
+
, enumerator_
|
|
2971
|
+
, obj);
|
|
2972
|
+
#endif
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
inline void SetIndexedPropertyHandler(
|
|
2976
|
+
v8::Local<v8::ObjectTemplate> tpl
|
|
2977
|
+
, IndexGetterCallback getter
|
|
2978
|
+
, IndexSetterCallback setter = 0
|
|
2979
|
+
, IndexQueryCallback query = 0
|
|
2980
|
+
, IndexDeleterCallback deleter = 0
|
|
2981
|
+
, IndexEnumeratorCallback enumerator = 0
|
|
2982
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()) {
|
|
2983
|
+
HandleScope scope;
|
|
2984
|
+
|
|
2985
|
+
imp::NativeIndexGetter getter_ =
|
|
2986
|
+
imp::IndexGetterCallbackWrapper;
|
|
2987
|
+
imp::NativeIndexSetter setter_ =
|
|
2988
|
+
setter ? imp::IndexSetterCallbackWrapper : 0;
|
|
2989
|
+
imp::NativeIndexQuery query_ =
|
|
2990
|
+
query ? imp::IndexQueryCallbackWrapper : 0;
|
|
2991
|
+
imp::NativeIndexDeleter deleter_ =
|
|
2992
|
+
deleter ? imp::IndexDeleterCallbackWrapper : 0;
|
|
2993
|
+
imp::NativeIndexEnumerator enumerator_ =
|
|
2994
|
+
enumerator ? imp::IndexEnumeratorCallbackWrapper : 0;
|
|
2995
|
+
|
|
2996
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
2997
|
+
otpl->SetInternalFieldCount(imp::kIndexPropertyFieldCount);
|
|
2998
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
2999
|
+
obj->SetInternalField(
|
|
3000
|
+
imp::kIndexPropertyGetterIndex
|
|
3001
|
+
, New<v8::External>(reinterpret_cast<void *>(getter)));
|
|
3002
|
+
|
|
3003
|
+
if (setter) {
|
|
3004
|
+
obj->SetInternalField(
|
|
3005
|
+
imp::kIndexPropertySetterIndex
|
|
3006
|
+
, New<v8::External>(reinterpret_cast<void *>(setter)));
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3009
|
+
if (query) {
|
|
3010
|
+
obj->SetInternalField(
|
|
3011
|
+
imp::kIndexPropertyQueryIndex
|
|
3012
|
+
, New<v8::External>(reinterpret_cast<void *>(query)));
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
if (deleter) {
|
|
3016
|
+
obj->SetInternalField(
|
|
3017
|
+
imp::kIndexPropertyDeleterIndex
|
|
3018
|
+
, New<v8::External>(reinterpret_cast<void *>(deleter)));
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
if (enumerator) {
|
|
3022
|
+
obj->SetInternalField(
|
|
3023
|
+
imp::kIndexPropertyEnumeratorIndex
|
|
3024
|
+
, New<v8::External>(reinterpret_cast<void *>(enumerator)));
|
|
3025
|
+
}
|
|
3026
|
+
|
|
3027
|
+
if (!data.IsEmpty()) {
|
|
3028
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
#if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
|
|
3032
|
+
tpl->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
|
3033
|
+
getter_, setter_, query_, deleter_, enumerator_, obj));
|
|
3034
|
+
#else
|
|
3035
|
+
tpl->SetIndexedPropertyHandler(
|
|
3036
|
+
getter_
|
|
3037
|
+
, setter_
|
|
3038
|
+
, query_
|
|
3039
|
+
, deleter_
|
|
3040
|
+
, enumerator_
|
|
3041
|
+
, obj);
|
|
3042
|
+
#endif
|
|
3043
|
+
}
|
|
3044
|
+
|
|
3045
|
+
inline void SetCallHandler(
|
|
3046
|
+
v8::Local<v8::FunctionTemplate> tpl
|
|
3047
|
+
, FunctionCallback callback
|
|
3048
|
+
, v8::Local<v8::Value> data = v8::Local<v8::Value>()) {
|
|
3049
|
+
HandleScope scope;
|
|
3050
|
+
|
|
3051
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
3052
|
+
otpl->SetInternalFieldCount(imp::kFunctionFieldCount);
|
|
3053
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
3054
|
+
|
|
3055
|
+
obj->SetInternalField(
|
|
3056
|
+
imp::kFunctionIndex
|
|
3057
|
+
, New<v8::External>(reinterpret_cast<void *>(callback)));
|
|
3058
|
+
|
|
3059
|
+
if (!data.IsEmpty()) {
|
|
3060
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
tpl->SetCallHandler(imp::FunctionCallbackWrapper, obj);
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
|
|
3067
|
+
inline void SetCallAsFunctionHandler(
|
|
3068
|
+
v8::Local<v8::ObjectTemplate> tpl,
|
|
3069
|
+
FunctionCallback callback,
|
|
3070
|
+
v8::Local<v8::Value> data = v8::Local<v8::Value>()) {
|
|
3071
|
+
HandleScope scope;
|
|
3072
|
+
|
|
3073
|
+
v8::Local<v8::ObjectTemplate> otpl = New<v8::ObjectTemplate>();
|
|
3074
|
+
otpl->SetInternalFieldCount(imp::kFunctionFieldCount);
|
|
3075
|
+
v8::Local<v8::Object> obj = NewInstance(otpl).ToLocalChecked();
|
|
3076
|
+
|
|
3077
|
+
obj->SetInternalField(
|
|
3078
|
+
imp::kFunctionIndex
|
|
3079
|
+
, New<v8::External>(reinterpret_cast<void *>(callback)));
|
|
3080
|
+
|
|
3081
|
+
if (!data.IsEmpty()) {
|
|
3082
|
+
obj->SetInternalField(imp::kDataIndex, data);
|
|
3083
|
+
}
|
|
3084
|
+
|
|
3085
|
+
tpl->SetCallAsFunctionHandler(imp::FunctionCallbackWrapper, obj);
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
//=== Weak Persistent Handling =================================================
|
|
3089
|
+
|
|
3090
|
+
#include "nan_weak.h" // NOLINT(build/include_subdir)
|
|
3091
|
+
|
|
3092
|
+
//=== ObjectWrap ===============================================================
|
|
3093
|
+
|
|
3094
|
+
#include "nan_object_wrap.h" // NOLINT(build/include_subdir)
|
|
3095
|
+
|
|
3096
|
+
//=== HiddenValue/Private ======================================================
|
|
3097
|
+
|
|
3098
|
+
#include "nan_private.h" // NOLINT(build/include_subdir)
|
|
3099
|
+
|
|
3100
|
+
//=== Export ==================================================================
|
|
3101
|
+
|
|
3102
|
+
inline
|
|
3103
|
+
void
|
|
3104
|
+
Export(ADDON_REGISTER_FUNCTION_ARGS_TYPE target, const char *name,
|
|
3105
|
+
FunctionCallback f) {
|
|
3106
|
+
HandleScope scope;
|
|
3107
|
+
|
|
3108
|
+
Set(target, New<v8::String>(name).ToLocalChecked(),
|
|
3109
|
+
GetFunction(New<v8::FunctionTemplate>(f)).ToLocalChecked());
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
//=== Tap Reverse Binding =====================================================
|
|
3113
|
+
|
|
3114
|
+
struct Tap {
|
|
3115
|
+
explicit Tap(v8::Local<v8::Value> t) : t_() {
|
|
3116
|
+
HandleScope scope;
|
|
3117
|
+
|
|
3118
|
+
t_.Reset(To<v8::Object>(t).ToLocalChecked());
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
~Tap() { t_.Reset(); } // not sure if necessary
|
|
3122
|
+
|
|
3123
|
+
inline void plan(int i) {
|
|
3124
|
+
HandleScope scope;
|
|
3125
|
+
v8::Local<v8::Value> arg = New(i);
|
|
3126
|
+
Call("plan", New(t_), 1, &arg);
|
|
3127
|
+
}
|
|
3128
|
+
|
|
3129
|
+
inline void ok(bool isOk, const char *msg = NULL) {
|
|
3130
|
+
HandleScope scope;
|
|
3131
|
+
v8::Local<v8::Value> args[2];
|
|
3132
|
+
args[0] = New(isOk);
|
|
3133
|
+
if (msg) args[1] = New(msg).ToLocalChecked();
|
|
3134
|
+
Call("ok", New(t_), msg ? 2 : 1, args);
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
inline void pass(const char * msg = NULL) {
|
|
3138
|
+
HandleScope scope;
|
|
3139
|
+
v8::Local<v8::Value> hmsg;
|
|
3140
|
+
if (msg) hmsg = New(msg).ToLocalChecked();
|
|
3141
|
+
Call("pass", New(t_), msg ? 1 : 0, &hmsg);
|
|
3142
|
+
}
|
|
3143
|
+
|
|
3144
|
+
inline void end() {
|
|
3145
|
+
HandleScope scope;
|
|
3146
|
+
Call("end", New(t_), 0, NULL);
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
private:
|
|
3150
|
+
Persistent<v8::Object> t_;
|
|
3151
|
+
};
|
|
3152
|
+
|
|
3153
|
+
#define NAN_STRINGIZE2(x) #x
|
|
3154
|
+
#define NAN_STRINGIZE(x) NAN_STRINGIZE2(x)
|
|
3155
|
+
#define NAN_TEST_EXPRESSION(expression) \
|
|
3156
|
+
( expression ), __FILE__ ":" NAN_STRINGIZE(__LINE__) ": " #expression
|
|
3157
|
+
|
|
3158
|
+
#define NAN_EXPORT(target, function) Export(target, #function, function)
|
|
3159
|
+
|
|
3160
|
+
#undef TYPE_CHECK
|
|
3161
|
+
|
|
3162
|
+
//=== Generic Maybefication ===================================================
|
|
3163
|
+
|
|
3164
|
+
namespace imp {
|
|
3165
|
+
|
|
3166
|
+
template <typename T> struct Maybefier;
|
|
3167
|
+
|
|
3168
|
+
template <typename T> struct Maybefier<v8::Local<T> > {
|
|
3169
|
+
inline static MaybeLocal<T> convert(v8::Local<T> v) {
|
|
3170
|
+
return v;
|
|
3171
|
+
}
|
|
3172
|
+
};
|
|
3173
|
+
|
|
3174
|
+
template <typename T> struct Maybefier<MaybeLocal<T> > {
|
|
3175
|
+
inline static MaybeLocal<T> convert(MaybeLocal<T> v) {
|
|
3176
|
+
return v;
|
|
3177
|
+
}
|
|
3178
|
+
};
|
|
3179
|
+
|
|
3180
|
+
} // end of namespace imp
|
|
3181
|
+
|
|
3182
|
+
template <typename T, template <typename> class MaybeMaybe>
|
|
3183
|
+
inline MaybeLocal<T>
|
|
3184
|
+
MakeMaybe(MaybeMaybe<T> v) {
|
|
3185
|
+
return imp::Maybefier<MaybeMaybe<T> >::convert(v);
|
|
3186
|
+
}
|
|
3187
|
+
|
|
3188
|
+
//=== TypedArrayContents =======================================================
|
|
3189
|
+
|
|
3190
|
+
#include "nan_typedarray_contents.h" // NOLINT(build/include_subdir)
|
|
3191
|
+
|
|
3192
|
+
//=== JSON =====================================================================
|
|
3193
|
+
|
|
3194
|
+
#include "nan_json.h" // NOLINT(build/include_subdir)
|
|
3195
|
+
|
|
3196
|
+
//=== ScriptOrigin =============================================================
|
|
3197
|
+
|
|
3198
|
+
#include "nan_scriptorigin.h" // NOLINT(build/include_subdir)
|
|
3199
|
+
|
|
3200
|
+
} // end of namespace Nan
|
|
3201
|
+
|
|
3202
|
+
#endif // NAN_H_
|