Skip to content

Commit

Permalink
assert: name anonymous functions
Browse files Browse the repository at this point in the history
Ref: #8913
PR-URL: #9051
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
maasencioh authored and jasnell committed Oct 20, 2016
1 parent 5bf215d commit 1043f5d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/assert.js
Expand Up @@ -359,13 +359,14 @@ function _throws(shouldThrow, block, expected, message) {
// 11. Expected to throw an error:
// assert.throws(block, Error_opt, message_opt);

assert.throws = function(block, /*optional*/error, /*optional*/message) {
assert.throws = function throws(block, /*optional*/error, /*optional*/message) {
_throws(true, block, error, message);
};

// EXTENSION! This is annoying to write outside this module.
assert.doesNotThrow = function(block, /*optional*/error, /*optional*/message) {
assert.doesNotThrow = doesNotThrow;
function doesNotThrow(block, /*optional*/error, /*optional*/message) {
_throws(false, block, error, message);
};
}

assert.ifError = function(err) { if (err) throw err; };
assert.ifError = function ifError(err) { if (err) throw err; };

0 comments on commit 1043f5d

Please sign in to comment.