astro-ghostcms/.pnpm-store/v3/files/a8/b879c8b9d29ae1dcd67b82400d0...

10 lines
326 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
import extractValueFromTemplateLiteral from './TemplateLiteral';
/**
* Returns the string value of a tagged template literal object.
* Redirects the bulk of the work to `TemplateLiteral`.
*/
export default function extractValueFromTaggedTemplateExpression(value) {
return extractValueFromTemplateLiteral(value.quasi);
}