import * as S from "flurp/string";const endsWithSel = S.endsWith("sel");endsWithSel("weasel"); // trueendsWithSel("_sel"); // falseendsWithSel("el"); // false
Example