From 01599e29593c5c6a6e207420363f6fb38cea0718 Mon Sep 17 00:00:00 2001 From: Leko Date: Fri, 19 Jan 2018 01:20:18 +0900 Subject: [PATCH] doc: Add example of null to assert.ifError MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/18236 Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso --- doc/api/assert.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api/assert.md b/doc/api/assert.md index f4654bf67eae3f..3df420cab64ff1 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -375,6 +375,8 @@ argument in callbacks. ```js const assert = require('assert'); +assert.ifError(null); +// OK assert.ifError(0); // OK assert.ifError(1);