Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

123456789
  1. var test = require('tape');
  2. var defined = require('../');
  3. test('falsy', function (t) {
  4. t.plan(1);
  5. var opts = { y : false, w : 4 };
  6. var x = defined(opts.x, opts.y, opts.w, 8);
  7. t.equal(x, false);
  8. });