Front end of the Slack clone application.

1234567891011
  1. "use strict";
  2. module.exports = function () {
  3. try {
  4. Object.keys("primitive");
  5. return true;
  6. } catch (e) {
  7. return false;
  8. }
  9. };