mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2026-01-13 22:42:02 +01: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)