mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-05 03:58:40 +00:00
12 lines
297 B
Forth
12 lines
297 B
Forth
namespace WoofWare.Myriad.Plugins
|
|
|
|
open System
|
|
|
|
[<AutoOpen>]
|
|
module internal Text =
|
|
let (|StartsWith|_|) (prefix : string) (s : string) : string option =
|
|
if s.StartsWith (prefix, StringComparison.Ordinal) then
|
|
Some (s.Substring prefix.Length)
|
|
else
|
|
None
|