Check if value needs to be escaped. This function is currently tolerant to single slashes and tabs.
true if value needs to escaped, false otherwise.
assert("new\nline".needEscaping); assert(!`i have \ slash`.needEscaping); assert("i like\rcarriage\rreturns".needEscaping); assert(!"just a text".needEscaping);
escapeValue
See Implementation
Check if value needs to be escaped. This function is currently tolerant to single slashes and tabs.