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