is-empty.js 116 B

123456
  1. 'use strict';
  2. module.exports = function (t, a) {
  3. a(t({}), true, "Empty");
  4. a(t({ 1: 1 }), false, "Not empty");
  5. };