unenv-nightly
Advanced tools
Comparing version 1.10.0-1717181891.8b99596 to 1.10.0-1717182318.e448402
{ | ||
"name": "unenv-nightly", | ||
"version": "1.10.0-1717181891.8b99596", | ||
"version": "1.10.0-1717182318.e448402", | ||
"description": "", | ||
@@ -50,3 +50,3 @@ "repository": "unjs/unenv", | ||
"devDependencies": { | ||
"@types/node": "^20.12.12", | ||
"@types/node": "^20.12.13", | ||
"automd": "^0.3.7", | ||
@@ -60,5 +60,5 @@ "changelogen": "^0.5.5", | ||
"unbuild": "^2.0.0", | ||
"wrangler": "^3.57.2" | ||
"wrangler": "^3.58.0" | ||
}, | ||
"packageManager": "pnpm@9.1.2" | ||
} |
@@ -160,4 +160,4 @@ # unenv | ||
- [node:path/win32](https://nodejs.org/api/path.html) - 🚧 mocked using proxy | ||
- [node:perf_hooks](https://nodejs.org/api/perf_hooks.html) - ✅ polyfilled 9/11 exports | ||
- [node:process](https://nodejs.org/api/process.html) - ✅ polyfilled 83/92 exports | ||
- [node:perf_hooks](https://nodejs.org/api/perf_hooks.html) - ✅ polyfilled all exports | ||
- [node:process](https://nodejs.org/api/process.html) - ✅ polyfilled 84/92 exports | ||
- [node:punycode](https://nodejs.org/api/punycode.html) - ✅ polyfilled all exports | ||
@@ -182,3 +182,3 @@ - [node:querystring](https://nodejs.org/api/querystring.html) - ✅ polyfilled all exports | ||
- [node:util/types](https://nodejs.org/api/util.html) - ✅ polyfilled all exports | ||
- [node:v8](https://nodejs.org/api/v8.html) - ✅ polyfilled 19/20 exports | ||
- [node:v8](https://nodejs.org/api/v8.html) - ✅ polyfilled all exports | ||
- [node:vm](https://nodejs.org/api/vm.html) - 🚧 mocked using proxy | ||
@@ -185,0 +185,0 @@ - [node:wasi](https://nodejs.org/api/wasi.html) - ✅ polyfilled all exports |
@@ -9,3 +9,10 @@ /// <reference types="node" /> | ||
stddev: number; | ||
count: number; | ||
countBigInt: bigint; | ||
exceedsBigInt: bigint; | ||
maxBigInt: number; | ||
minBigInt: bigint; | ||
percentiles: Map<number, number>; | ||
percentilesBigInt: Map<bigint, bigint>; | ||
percentileBigInt(_percentile: number): bigint; | ||
percentile(percentile: number): number; | ||
@@ -12,0 +19,0 @@ reset(): void; |
/// <reference types="node" /> | ||
import type perf_hooks from "node:perf_hooks"; | ||
export { PerformanceResourceTiming, PerformanceObserverEntryList, } from "../../web/performance/index"; | ||
export declare const Performance: { | ||
@@ -4,0 +5,0 @@ new (): { |
@@ -20,3 +20,11 @@ /// <reference types="node" /> | ||
export declare const writeHeapSnapshot: typeof v8.writeHeapSnapshot; | ||
type _Function = Function; | ||
export declare function queryObjects(ctor: _Function): number | string[]; | ||
export declare function queryObjects(ctor: _Function, options: { | ||
format: "count"; | ||
}): number; | ||
export declare function queryObjects(ctor: _Function, options: { | ||
format: "summary"; | ||
}): string[]; | ||
declare const _default: any; | ||
export default _default; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
697855
20353