Skip to content

Instantly share code, notes, and snippets.

@elboman
Created February 1, 2016 16:41
Show Gist options
  • Save elboman/b72fa4e3fb487cabb031 to your computer and use it in GitHub Desktop.
Save elboman/b72fa4e3fb487cabb031 to your computer and use it in GitHub Desktop.
RegEx to upgrade lodash to 4.*
// _.clone(something, true); -> _.cloneDeep(something);
find: /_.clone\((.+?),(.+?)true\)/
replace: /_.cloneDeep($1)/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment