mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-15 15:08:27 +02:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
274 B
274 B
title, category
title | category |
---|---|
assert | Node.js |
Assertions
assert(val)
assert.equal(actual, expected)
assert.notEqual(a, e)
assert.deepEqual(a, e)
assert.notDeepEqual(a, e)
assert.throws(fn)