summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/test/object/is-empty.js
blob: b560c2c36b0d4b866462ecbd1ee30cc0dd3c46a9 (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");
};