mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
9 lines
215 B
JavaScript
Vendored
9 lines
215 B
JavaScript
Vendored
var test = require('tape');
|
|
var defined = require('../');
|
|
|
|
test('falsy', function (t) {
|
|
t.plan(1);
|
|
var opts = { y : false, w : 4 };
|
|
var x = defined(opts.x, opts.y, opts.w, 8);
|
|
t.equal(x, false);
|
|
});
|