js_validate_script | R Documentation |
Simple wrapper for ct$validate
in V8.
Tests if code constitutes a syntactically valid JS script.
js_validate_script(text, error = TRUE)
text |
character vector with JavaScript code |
error |
raise error on invalid code |
js_validate_script("function foo(x){2*x}") #TRUE
js_validate_script("foo = function(x){2*x}") #TRUE
# Anonymous functions in global scope are invalid
js_validate_script("function(x){2*x}", error = FALSE) #FALSE
# Use ! or () to check anonymous function syntax
js_validate_script("!function(x){2*x}") #TRUE
js_validate_script("(function(x){2*x})") #TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.