Why doesn't this produce anything?
console.log(JSON.stringify(function(){console.log('foobar');}));
Why doesn't this produce anything?
console.log(JSON.stringify(function(){console.log('foobar');}));
JSON can't stringify functions at all, it handles them just like undefined
or null
values. You can check the exact algorithm at EcmaScript 5.1 §15.12.3, see also the description at MDN.
However you of course can stringify function expression by casting them to a string, try
console.log("" + function(){console.log('foobar');})
JSON has no means to represent a function. It is a data format designed for simplicity and compatibility across languages (and a function is the last thing that will be cross-language compatible).
From the docs for JSON.stringify:
If undefined, a function, or an XML value is encountered during conversion it is either omitted (when it is found in an object) or censored to null (when it is found in an array).
If you want to use JSON.stringify
to also convert functions and native objects you can pass a converter function as the second argument:
const data = {
fn: function(){}
}
function converter(key, val) {
if (typeof val === 'function' || val && val.constructor === RegExp) {
return String(val)
}
return val
}
console.log(JSON.stringify(data, converter, 2))
Return undefined
from the converter function if you want to omit the result.
The third parameter is how many spaces you want the output to indent (optional).
You cannot do that, but there are some third party libraries can help you do that, like: https://www.npmjs.com/package/json-fn
There are couple of ways to do this.
Let's say you have function foo
> function (foo) { return foo}
if you console log it it returns function name with type
> console.log(foo)
[Function: foo]
when it comes to get access to stringified version of it, you can use one of the ways listed below.
> console.log(`${foo}`)
function (bar) { return bar}
undefined
> console.log(foo.toString())
function (bar) { return bar}
undefined
> console.log("" + foo)
function (bar) { return bar}
undefined
Well there are two ways I know of doing this, first is just String(function)
and you can just do eval()
on what that returns. There's also a way to run the code in the function directly with regex, it would look something like this:
String(function).replace(/\w+\s{1}\w+\(\)\s?\{(\n\s+)?|\(\)\s?=>\s?{(\n\s+)?/, '').replace(/\n?\}/, '')
with the regex example when you do eval()
it runs the code from the function. For both examples where it says "function" put in the name of your function with no () at the end.