UNPKG

ts-mdls

Version:

Lightweigth, dependency free, fully typed wrapper of the macOS `mdls` command

8 lines (7 loc) 180 B
export default function parseString(value: string) { if (value[0] === '"' && value[value.length - 1] === '"') { return value.slice(1, -1); } else { return value; } }