UNPKG

@aegisjsproject/core

Version:

A fast, secure, modern, light-weight, and simple JS library for creating web components and more!

6 lines (4 loc) 288 B
import { stringify } from '../stringify.js'; export const text = (strings, ...values) => Array.isArray(strings) && Array.isArray(strings.raw) ? String.raw(strings, ...values.map(stringify)) : String.raw({ raw: Array.isArray(strings) ? strings : [strings] }, ...values.map(stringify));