UNPKG

@inlang/paraglide-js

Version:

[![Inlang-ecosystem compatibility badge](https://cdn.jsdelivr.net/gh/opral/monorepo@main/inlang/assets/md-badges/inlang.svg)](https://inlang.com)

5 lines (4 loc) 204 B
/** Wrap the given string in double quotes */ export const doubleQuote = (str) => `"${str.replace(/"/g, '\\"')}"`; /** Wrap the given string in backticks */ export const backtick = (str) => `\`${str}\``;