UNPKG

@primer/primitives

Version:

Typography, spacing, and color primitives for Primer design system

7 lines (6 loc) 221 B
export const hasSpaceInString = (string) => { if (typeof string !== 'string') { throw new TypeError(`Invalid input. Input must be a string, ${typeof string} provided`); } return /\s/g.test(string); };