UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 195 B
export function startsWith(text, prefix) { if (!text || !prefix) { return text === prefix; } if (text.length < prefix.length) { return false; } return text.startsWith(prefix); }