mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
import httpErrors from 'http-errors';
|
|
|
|
const apiError = (code, id, message) => {
|
|
return httpErrors(code, message, { id });
|
|
};
|
|
|
|
export default apiError;
|
|
export { httpErrors };
|