Files
dees-document/ts/helpers.ts

7 lines
202 B
TypeScript

import * as plugins from './plugins.js';
import * as paths from './paths.js';
export const getBundleAsString = async () => {
return plugins.smartfs.file(paths.bundleFile).encoding('utf8').read();
};