Commit 8c8d5187 authored by Maciej Małecki's avatar Maciej Małecki Committed by Ben Noordhuis
Browse files

assert: Make `assert` module an `assert.ok` function

Code can be written:

    var assert = require('assert');
    assert(true);

instead of:

    var assert = require('assert');
    assert.ok(true);
parent 234afa5b
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment