Skip to content

Instantly share code, notes, and snippets.

@kaizer1v
Created September 5, 2018 09:08
Show Gist options
  • Save kaizer1v/34969c4ef168ad45ec1639b91add6c4a to your computer and use it in GitHub Desktop.
Save kaizer1v/34969c4ef168ad45ec1639b91add6c4a to your computer and use it in GitHub Desktop.
Trimming
function trimLeft(val) {
// Adapted from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim#Polyfill
return val.replace(/^[\s\uFEFF\xA0]+/g, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment