mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-15 02:50:58 +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");
|
||
|
|
};
|