aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/test/object/is-empty.js
blob: 067b1621f02c0a062ca806bfa1aea514d29087e3 (plain)
1
2
3
4
5
6
"use strict";

module.exports = function (t, a) {
	a(t({}), true, "Empty");
	a(t({ 1: 1 }), false, "Not empty");
};