mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 08:39:29 +08:00
11 lines
No EOL
320 B
Text
11 lines
No EOL
320 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.assert = void 0;
|
|
// the base assert module doesn't use ts assertion syntax
|
|
function assert(value, message) {
|
|
if (value == null) {
|
|
throw new Error(message);
|
|
}
|
|
}
|
|
exports.assert = assert;
|
|
//# sourceMappingURL=assert.js.map |