mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/12935 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>v6
Refael Ackermann
8 years ago
5 changed files with 88 additions and 17 deletions
@ -0,0 +1,3 @@ |
|||
const common = require('../common'); |
|||
const f = common.mustCall( () => {}, 2); |
|||
f(); |
@ -0,0 +1,3 @@ |
|||
const common = require('../common'); |
|||
const f = common.mustCallAtLeast(() => {}, 2); |
|||
f(); |
Loading…
Reference in new issue