UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

24 lines (19 loc) 436 B
'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;