mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-05-07 03:09:23 +00:00
8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (t, a) {
|
|
var e = new Error();
|
|
a(t(e), e, "Error");
|
|
a.throws(function () { t({}); }, "Other");
|
|
};
|