UNPKG

robb

Version:

Simple type checker in JavaScript.

14 lines (11 loc) 241 B
// Load ‘Robb.js’ var Robb = require('../src/robb.js'); /** * Test ‘isUndefined’ * * @param {object} test */ exports.isUndefined = function(test) { test.strictEqual( Robb.isUndefined( undefined ), true ); test.done(); };