Created
October 1, 2012 23:59
-
-
Save anvaka/3815296 to your computer and use it in GitHub Desktop.
JavaScript Function Serialization
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
Hi
anyone who know how we can convert javascript function into json object
suppose this is a function
app.controller('myctrl',function($scope){
}
i want to convert into json object
anyone who know plz help