js: Convert static/js/channel.js to ES6 module.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-02-27 15:39:51 -08:00
committed by Tim Abbott
parent 1dafb143e3
commit 09920af211
73 changed files with 184 additions and 45 deletions

View File

@@ -1,5 +1,6 @@
"use strict";
const channel = require("./channel");
const people = require("./people");
exports.send_message = function (request, on_success, error) {