Vlastní funkce v preprocesoru Stylus.

Výsledné CSS
div {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

See the Pen LEpYqZ by Martin Jinda (@Mardzis) on CodePen.

Definice vlastní funkce
prefixer(vlastnost, hodnota) {
    -moz-{vlastnost}: hodnota;
    -webkit-{vlastnost}: hodnota;
    -o-{vlastnost}: hodnota;
    -ms-{vlastnost}: hodnota;
    {vlastnost}: hodnota;
}

div {
    prefixer(box-sizing, border-box);
}

See the Pen yyYLGw by Martin Jinda (@Mardzis) on CodePen.