UNPKG

react-ga-gtm

Version:
7 lines (5 loc) 194 B
// GA strings need to have leading/trailing whitespace trimmed, and not all // browsers have String.prototoype.trim(). export default function trim(s) { return s.replace(/^\s+|\s+$/g, ''); }