Last active
March 6, 2017 16:58
-
-
Save stgogm/f055b2cc0fb3c082425a34b7df7d8374 to your computer and use it in GitHub Desktop.
LESS to SCSS Regexps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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