* Add prefix to values in string
(string, prefix)
| 107 | * Add prefix to values in string |
| 108 | */ |
| 109 | replace(string, prefix) { |
| 110 | return string.replace(this.regexp(), `$1${prefix}$2`) |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Get value with comments if it was not changed |