From d6af3acaa72716c6a3c3c8428da659d584f31ef1 Mon Sep 17 00:00:00 2001 From: Black Mirror Date: Thu, 5 Apr 2018 13:01:37 +0200 Subject: [PATCH] fixed string split separator default to '.' --- scss/types/_string.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/types/_string.scss b/scss/types/_string.scss index 1469436..da2ed2f 100644 --- a/scss/types/_string.scss +++ b/scss/types/_string.scss @@ -34,7 +34,7 @@ @return false; } -@function string-split($s, $sep) { +@function string-split($s, $sep: '.') { $split: (); $i: str-index($s, $sep);