mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-06 23:30:58 +00:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
var isError = require("./is-error");
|
||
|
|
|
||
|
|
module.exports = function (value) {
|
||
|
|
if (!isError(value)) throw new TypeError(value + " is not an Error object");
|
||
|
|
return value;
|
||
|
|
};
|