Skip to content

Instantly share code, notes, and snippets.

@ruffle1986
Last active August 29, 2015 14:24
Show Gist options
  • Save ruffle1986/e96776a2b4d4d387900d to your computer and use it in GitHub Desktop.
Save ruffle1986/e96776a2b4d4d387900d to your computer and use it in GitHub Desktop.
2x image url replacer
'image.jpg'.replace(/\.([a-z|0-9]+)$/, '@2x.$1') // image@2x.jpg
'image.jpg'.replace(/(.+)(\.\w+)$/, "$1@2x$2") // image@2x.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment