Files
ObsidianPad/node_modules/builder-util-runtime/out/error.js
T
dinlo 436a9631fc Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-31 18:44:04 +08:00

9 lines
255 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.newError = newError;
function newError(message, code) {
const error = new Error(message);
error.code = code;
return error;
}
//# sourceMappingURL=error.js.map