UNPKG

bigbluebutton-html-plugin-sdk

Version:

This repository contains the SDK for developing BigBlueButton plugins. Plugins are React components that can be loaded from external sources by the BigBlueButton HTML5 client to extend its functionalities.

11 lines 511 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hasErrorChanged = void 0; var utils_1 = require("../utils"); var hasErrorChanged = function (previousResultError, currentResultError) { var currentSerialized = (0, utils_1.sortedStringify)(currentResultError); var previousSerialized = (0, utils_1.sortedStringify)(previousResultError); return currentSerialized !== previousSerialized; }; exports.hasErrorChanged = hasErrorChanged; //# sourceMappingURL=utils.js.map