* Escapes text to prevent scripting attacks.
(text)
| 312 | */ |
| 313 | |
| 314 | function utils_escape(text) { |
| 315 | return String(text).replace(ESCAPE_REGEX, function (match) { |
| 316 | return ESCAPE_LOOKUP[match]; |
| 317 | }); |
| 318 | } |
| 319 | /** |
| 320 | * Sometimes we want to pull out the innermost element of a group. In most |
| 321 | * cases, this will just be the group itself, but when ordgroups and colors have |
nothing calls this directly
no outgoing calls
no test coverage detected