|
|
|
|
|
by rezonant
812 days ago
|
|
Yes but this is more general, allowing you to use it in more cases. For instance, I use it heavily when converting old JavaScript to modern ES/TS. Using "var" everywhere? Replace them all with let. Using anonymous functions instead of lambdas, easy to change those all over (provided there's no "this" dependencies) Have two thousand strings which all need the same edits? No need to do a find/replace operation, you can do it directly in the editor. |
|