Skip to content

Commit 944a956

Browse files
committed
assert: graduate assert.match and assert.doesNotMatch
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #38111 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent bc531d1 commit 944a956

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

doc/api/assert.md

+8-10
Original file line numberDiff line numberDiff line change
@@ -876,19 +876,18 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the
876876
added:
877877
- v13.6.0
878878
- v12.16.0
879+
changes:
880+
- version: REPLACEME
881+
pr-url: https://github.com/nodejs/node/pull/38111
882+
description: This API is no longer experimental.
879883
-->
880884

881885
* `string` {string}
882886
* `regexp` {RegExp}
883887
* `message` {string|Error}
884888

885-
> Stability: 1 - Experimental
886-
887889
Expects the `string` input not to match the regular expression.
888890

889-
This feature is currently experimental and the name might change or it might be
890-
completely removed again.
891-
892891
```mjs
893892
import assert from 'assert/strict';
894893

@@ -1398,19 +1397,18 @@ let err;
13981397
added:
13991398
- v13.6.0
14001399
- v12.16.0
1400+
changes:
1401+
- version: REPLACEME
1402+
pr-url: https://github.com/nodejs/node/pull/38111
1403+
description: This API is no longer experimental.
14011404
-->
14021405

14031406
* `string` {string}
14041407
* `regexp` {RegExp}
14051408
* `message` {string|Error}
14061409

1407-
> Stability: 1 - Experimental
1408-
14091410
Expects the `string` input to match the regular expression.
14101411

1411-
This feature is currently experimental and the name might change or it might be
1412-
completely removed again.
1413-
14141412
```mjs
14151413
import assert from 'assert/strict';
14161414

0 commit comments

Comments
 (0)