Created
September 5, 2018 09:08
-
-
Save kaizer1v/34969c4ef168ad45ec1639b91add6c4a to your computer and use it in GitHub Desktop.
Trimming
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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