aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/test/object/is-callable.js
blob: 415023e397bd26317a3b6c4399066d3dd44f55a1 (plain)
1
2
3
4
5
6
7
8
"use strict";

module.exports = function (t, a) {
	a(t(function () {}), true, "Function");
	a(t({}), false, "Object");
	a(t(), false, "Undefined");
	a(t(null), false, "Null");
};