Front end of the Slack clone application.

12345678910111213
  1. 'use strict';
  2. var Set = require('../../');
  3. module.exports = function (t, a) {
  4. var content = ['raz', 2, true], set = new Set(content);
  5. a(t.call(set), true);
  6. set = new Set();
  7. a(t.call(set), undefined);
  8. };