You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(@clayui/css): Global Functions adds starts-with($str1, $str2). A function that determines whether the string $str1 begins with the characters of the specified string $str2.
Copy file name to clipboardExpand all lines: packages/clay-css/src/scss/functions/_global-functions.scss
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -634,6 +634,20 @@
634
634
@returnmax($val1, $val2);
635
635
}
636
636
637
+
/// A function that determines whether the string `$str1` begins with the characters of the specified string `$str2`. This returns `true` if `$str1` begins with `$str2`.
0 commit comments