From 944a956087d4a3379f1fc68b3efc1bc6ea6c2f55 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Tue, 6 Apr 2021 09:54:49 -0700 Subject: [PATCH] assert: graduate assert.match and assert.doesNotMatch Signed-off-by: James M Snell PR-URL: https://github.com/nodejs/node/pull/38111 Reviewed-By: Antoine du Hamel Reviewed-By: Ruben Bridgewater Reviewed-By: Darshan Sen --- doc/api/assert.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/doc/api/assert.md b/doc/api/assert.md index 5c73e1085ea000..bfdd7cdd085fac 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -876,19 +876,18 @@ parameter is an instance of an [`Error`][] then it will be thrown instead of the added: - v13.6.0 - v12.16.0 +changes: + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/38111 + description: This API is no longer experimental. --> * `string` {string} * `regexp` {RegExp} * `message` {string|Error} -> Stability: 1 - Experimental - Expects the `string` input not to match the regular expression. -This feature is currently experimental and the name might change or it might be -completely removed again. - ```mjs import assert from 'assert/strict'; @@ -1398,19 +1397,18 @@ let err; added: - v13.6.0 - v12.16.0 +changes: + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/38111 + description: This API is no longer experimental. --> * `string` {string} * `regexp` {RegExp} * `message` {string|Error} -> Stability: 1 - Experimental - Expects the `string` input to match the regular expression. -This feature is currently experimental and the name might change or it might be -completely removed again. - ```mjs import assert from 'assert/strict';