1
0
Fork 0
mirror of https://gitlab.com/Shinobi-Systems/ShinobiCE.git synced 2025-03-09 15:40:15 +00:00
ShinobiCE/tools/ffmpegToWeb/Player/broadway/utils/assert.js

12 lines
159 B
JavaScript

"use strict";
var error = require('./error');
function assert(condition, message) {
if (!condition) {
error(message);
}
}
module.exports = assert;