Socket
Socket
Sign inDemoInstall

assert-deep-strict-equal

Package Overview
Dependencies
0
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

2

dist/assert-deep-strict-equal.d.ts

@@ -1,4 +0,4 @@

//! assert-deep-strict-equal v1.1.1 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License
//! assert-deep-strict-equal v1.1.2 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License
declare const assertDeepStrictEqual: (actual: unknown, expected: unknown, done?: ((e?: unknown) => void) | undefined) => void;
export { assertDeepStrictEqual };

@@ -1,2 +0,2 @@

//! assert-deep-strict-equal v1.1.1 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License
//! assert-deep-strict-equal v1.1.2 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License

@@ -3,0 +3,0 @@ import { deepStrictEqual } from 'assert';

MIT License
Copyright (c) 2021-2023 Individual contributors to assert-deep-strict-equal
Copyright (c) 2021-2024 Individual contributors to assert-deep-strict-equal

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "assert-deep-strict-equal",
"version": "1.1.1",
"version": "1.1.2",
"description": "Asynchronous assert fails in Mocha you can see and don't timeout",

@@ -82,9 +82,9 @@ "license": "MIT",

"devDependencies": {
"@types/node": "~20.8",
"@typescript-eslint/eslint-plugin": "~6.9",
"@typescript-eslint/parser": "~6.9",
"@types/node": "~20.10",
"@typescript-eslint/eslint-plugin": "~6.17",
"@typescript-eslint/parser": "~6.17",
"add-dist-header": "~1.3",
"copy-file-util": "~1.1",
"copy-folder-util": "~1.1",
"eslint": "~8.53",
"eslint": "~8.56",
"fetch-json": "~3.2",

@@ -96,4 +96,4 @@ "jshint": "~2.13",

"run-scripts-util": "~1.2",
"typescript": "~5.2"
"typescript": "~5.3"
}
}

@@ -22,4 +22,4 @@ # assert-deep-strict-equal

```javascript
const actual = { x: 3, y: 7, z: 21 };
const expected = { x: 3, y: 7, z: 21 };
const actual = { ingredient: 'sugar', units: 'grams', amount: 100 };
const expected = { ingredient: 'sugar', units: 'grams', amount: 100 };
assertDeepStrictEqual(actual, expected, done);

@@ -26,0 +26,0 @@ ```

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc