UNPKG

is-scoped

Version:

Check if a string is a scoped npm package name

6 lines (4 loc) 135 B
import scopedRegex from 'scoped-regex'; export default function isScoped(string) { return scopedRegex({exact: true}).test(string); }