mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
9 lines
281 B
JavaScript
9 lines
281 B
JavaScript
import { warnDeprecated } from '@shikijs/core';
|
|
|
|
const getWasmInlined = async (info) => {
|
|
warnDeprecated('`getWasmInlined` is deprecated. Use `import("shiki/wasm")` instead.');
|
|
return import('shiki/wasm').then((wasm) => wasm.default(info));
|
|
};
|
|
|
|
export { getWasmInlined as g };
|