-
-
Save AlanTai/6178253 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function functionReplacer(key, value) { | |
if (typeof(value) === 'function') { | |
return value.toString(); | |
} | |
return value; | |
} | |
function functionReviver(key, value) { | |
if (key === "") return value; | |
if (typeof value === 'string') { | |
var rfunc = /function[^\(]*\(([^\)]*)\)[^\{]*{([^\}]*)\}/, | |
match = value.match(rfunc); | |
if (match) { | |
var args = match[1].split(',').map(function(arg) { return arg.replace(/\s+/, ''); }); | |
return new Function(args, match[2]); | |
} | |
} | |
return value; | |
} | |
var person = { | |
name : 'John Smith', | |
age : 42, | |
isJohn: function() { | |
return !!this.name.match(/John/); | |
} | |
}; | |
jsonString = JSON.stringify(person, functionReplacer); | |
restoredPerson = JSON.parse(jsonString, functionReviver); | |
console.log(restoredPerson.isJohn()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment