- s-starts-with? prefix s #!optional ignore-caseprocedure
Does s start with prefix?
If ignore-case is non-#f, the comparison is done without paying attention to case differences.
(s-starts-with? "lib/" "lib/file.js") ;; => #t (s-starts-with? "LIB/" "lib/file.js") ;; => #f (s-starts-with? "LIB/" "lib/file.js" #t) ;; => #t