@sheetxl/scripting
Version:
Scripting - Scripting engine for Macros and formulas; includes TypeScript and EsBuild.
22 lines (21 loc) • 625 B
JavaScript
/**
* @license @sheetxl/scripting - Scripting - Scripting engine for Macros and formulas; includes TypeScript and EsBuild. - v0.6.6
*
* (C) 2025-present SheetXL Inc. & Michael T. Ford
* License: The license can be found at https://www.sheetxl.com/license.
*/
let t = null;
async function n() {
return t || (t = new Promise(async (i, l) => {
let r = null;
try {
r = await import("https://esm.sh/typescript@5.7.2");
} catch (e) {
console.error("Error initializing Browser TypeScript module:", e);
}
r || console.log("use script fallback"), i(r);
}), t);
}
export {
n as initialize
};