UNPKG

@enonic/js-utils

Version:
9 lines (8 loc) 224 B
export function startsWith( string :string, searchString :string, position :number = 0 ) :boolean { const pos = position > 0 ? position|0 : 0; return string.substring(pos, pos + searchString.length) === searchString; }