Opal-Estate-Pro/node_modules/defined/test/falsy.js
2019-09-13 11:27:52 +07:00

10 lines
215 B
JavaScript
Executable File

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);
});