Front end of the Slack clone application.

some.js 327B

1234567891011
  1. 'use strict';
  2. var Set = require('../../');
  3. module.exports = function (t, a) {
  4. a(t.call(new Set(), Boolean), false, "Empty set");
  5. a(t.call(new Set([2, 3, 4]), Boolean), true, "All true");
  6. a(t.call(new Set([0, false, 4]), Boolean), true, "Some false");
  7. a(t.call(new Set([0, false, null]), Boolean), false, "All false");
  8. };