UNPKG

@owdproject/core

Version:

<p align="center"> <img width="160" height="160" src="https://avatars.githubusercontent.com/u/65117737?s=160&v=4" /> </p> <h1 align="center">Open Web Desktop</h1> <h3 align="center"> A modular framework for building web-based desktop experiences. </h3

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