UNPKG

@owdproject/core

Version:

Nuxt Desktop module for browser desktop experiences (windows, shell, apps)

7 lines (6 loc) 136 B
export function shellEscape(str: string): string { if (str === '') { return "''"; } return `${str.replace(/'/g, `'\\''`)}`; }