Files
med-notes/.pnpm-store/v10/files/67/2c27bad8d14a9ba8cd3e446949e4639951f5935c45cd0d5dcd64c0e52a23866822cce8c6465ddc1ea9b1343df1cae099bb6b009c297c8b3e5da026c556afed
2025-05-09 05:30:08 +02:00

24 lines
733 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.transformFile = void 0;
exports.transformFileAsync = transformFileAsync;
exports.transformFileSync = transformFileSync;
const transformFile = exports.transformFile = function transformFile(filename, opts, callback) {
if (typeof opts === "function") {
callback = opts;
}
callback(new Error("Transforming files is not supported in browsers"), null);
};
function transformFileSync() {
throw new Error("Transforming files is not supported in browsers");
}
function transformFileAsync() {
return Promise.reject(new Error("Transforming files is not supported in browsers"));
}
0 && 0;
//# sourceMappingURL=transform-file-browser.js.map