Skip to content

Instantly share code, notes, and snippets.

@stgogm
Last active March 6, 2017 16:58
Show Gist options
  • Save stgogm/f055b2cc0fb3c082425a34b7df7d8374 to your computer and use it in GitHub Desktop.
Save stgogm/f055b2cc0fb3c082425a34b7df7d8374 to your computer and use it in GitHub Desktop.
LESS to SCSS Regexps
var mixinsDef = /\.([\w-]+)\(([\w-;\$\s]*)\)\s+?{/i; // Replace with: @mixin $1($2) {
var mixinsCall = /\.([\w-]+)\(([\w-;\$\s]*)\);/i; // Replace with: @include $1($2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment