Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/webconsole/controller.rb
Instance Method Summary collapse
Instance Method Details
#javascript_escape ⇒ Object
45 46 47 |
# File 'lib/webconsole/controller.rb', line 45 def javascript_escape self.gsub('\\', "\\\\\\\\").gsub("\n", "\\\\n").gsub("'", "\\\\'") end |
#javascript_escape! ⇒ Object
49 50 51 |
# File 'lib/webconsole/controller.rb', line 49 def javascript_escape! replace(self.javascript_escape) end |