bigbluebutton-Github/bigbluebutton-html5/server/main.js

11 lines
499 B
JavaScript
Raw Normal View History

// Needed for Atmosphere package RocketChat/meteor-streamer
// It is out of date and was written when Meteor contained lodash
// package. However, we now import lodash as an npm package
// in order to control versions, update flexibly, etc..
// Setting the global._ to utilize the npm lodash package is an interim fix
// and its introduction was inspired by
// https://github.com/RocketChat/meteor-streamer/issues/40#issuecomment-497627893
2023-02-24 01:38:48 +08:00
import { isEmpty } from 'radash';
2023-02-24 01:38:48 +08:00
global._ = { isEmpty };