mirror of
https://github.com/pysunday/rs-reverse.git
synced 2025-04-12 03:46:56 +08:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
// 转译还原
|
|
module.exports = function(text) {
|
|
try {
|
|
try {
|
|
return JSON.parse('"' + text + '"')
|
|
} catch (e) {
|
|
return eval('("' + text + '")')
|
|
}
|
|
} catch (e) {
|
|
return text
|
|
}
|
|
}
|