3
0
Fork 0
mirror of https://github.com/crazy-max/ghaction-import-gpg.git synced 2025-03-01 09:53:59 +01:00
import-gpg/node_modules/minimalistic-assert/index.js

12 lines
252 B
JavaScript
Raw Normal View History

2020-05-05 21:11:19 +02:00
module.exports = assert;
function assert(val, msg) {
if (!val)
throw new Error(msg || 'Assertion failed');
}
assert.equal = function assertEqual(l, r, msg) {
if (l != r)
throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r));
};