mirror of
https://gitlab.com/Shinobi-Systems/ShinobiCE.git
synced 2025-03-09 15:40:15 +00:00
12 lines
159 B
JavaScript
12 lines
159 B
JavaScript
"use strict";
|
|
|
|
var error = require('./error');
|
|
|
|
function assert(condition, message) {
|
|
if (!condition) {
|
|
error(message);
|
|
}
|
|
}
|
|
|
|
|
|
module.exports = assert;
|