]> git.r.bdr.sh - rbdr/dotfiles/blob
625e221d2c381182c7057312626366c08a263f6e
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function (t, a) {
4 a(t(function () {}), true, "Function");
5 a(t({}), false, "Object");
6 a(t(), false, "Undefined");
7 a(t(null), false, "Null");
8 };