@vitest/utils 2.1.1 → 2.1.3
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/dist/{chunk-display.js → chunk-_commonjsHelpers.js} +5 -1
- package/dist/diff.js +809 -798
- package/dist/error.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +370 -354
- package/package.json +2 -2
@@ -152,4 +152,8 @@ function objDisplay(obj, options = {}) {
|
|
152
152
|
return str;
|
153
153
|
}
|
154
154
|
|
155
|
-
|
155
|
+
function getDefaultExportFromCjs (x) {
|
156
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
157
|
+
}
|
158
|
+
|
159
|
+
export { format as f, getDefaultExportFromCjs as g, inspect as i, objDisplay as o, stringify as s };
|