Files
line_push/node_modules/style-resources-loader/src/utils/inject-resources.ts
T
2022-07-18 02:50:52 +00:00

24 lines
607 B
TypeScript

import type {LoaderContext} from '../types';
import type {StyleResources, StyleResourcesLoaderNormalizedOptions} from '..';
import {errorMessage} from './error-message';
export const injectResources = async (
ctx: LoaderContext,
options: StyleResourcesLoaderNormalizedOptions,
source: string,
resources: StyleResources,
) => {
const {injector} = options;
const dist: unknown = injector.call(ctx, source, resources);
const content = await dist;
if (typeof content !== 'string') {
throw new Error(errorMessage.invalidInjectorReturn);
}
return content;
};