0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
24 lines
436 B
JavaScript
24 lines
436 B
JavaScript
'use strict';
|
|
|
|
function parseString(str) {
|
|
try {
|
|
if (str[0] === '"') {
|
|
return JSON.parse(str);
|
|
}
|
|
|
|
if (str[0] === "'" && str.substr(str.length - 1) === "'") {
|
|
return parseString(
|
|
str
|
|
.replace(/\\.|"/g, (x) => (x === '"' ? '\\"' : x))
|
|
.replace(/^'|'$/g, '"')
|
|
);
|
|
}
|
|
|
|
return JSON.parse('"' + str + '"');
|
|
} catch (e) {
|
|
return str;
|
|
}
|
|
}
|
|
|
|
module.exports = parseString;
|