UNPKG

ice.fo.utils

Version:

7 lines (6 loc) 180 B
/** * Check whether the string is a generated anchor id. */ export default function checkIsAnchor(value) { return value && ['anchor_', '#'].some((i) => value.startsWith(i)); }