Function: s-starts-with-p
s-starts-with-p is a for s-starts-with?, defined in
s.el.
Signature
(s-starts-with-p PREFIX S &optional IGNORE-CASE)
Documentation
Does S start with PREFIX?
If IGNORE-CASE is non-nil, the comparison is done without paying attention to case differences.
Alias: s-prefix?. This is a simple wrapper around the built-in
string-prefix-p.