UNPKG

react-ga

Version:
7 lines (5 loc) 210 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 && s.toString().replace(/^\s+|\s+$/g, ''); }