Skip to content

Instantly share code, notes, and snippets.

View JesseLeitch's full-sized avatar

Jesse JesseLeitch

View GitHub Profile
$script : 'chinese';
@function get-script-value($input){
@each $language in $input{
$langin : nth($language,1);
$langval : nth($language,2);
@if $langin==$script {
@return($langval);
}
}