Skip to content

Instantly share code, notes, and snippets.

@heyMP
Created April 2, 2014 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heyMP/9937466 to your computer and use it in GitHub Desktop.
Save heyMP/9937466 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
@function splitString($string, $var, $location: 'first')
{
$length : str-length($string);
$index : str-index($string,$var);
$first : str-slice($string,0,$index - 1);
$second : str-slice($string,$index + 2,$length);
@if $location == 'first' {
@return $first;
} @else {
@return $second;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment