Skip to content

Instantly share code, notes, and snippets.

@v-vashchenko
Created July 5, 2019 10:18
Show Gist options
  • Save v-vashchenko/38900d740de89620084ba1f5cce8da21 to your computer and use it in GitHub Desktop.
Save v-vashchenko/38900d740de89620084ba1f5cce8da21 to your computer and use it in GitHub Desktop.
export const leftTrim = (string) => {
if (!string) return string;
return string.replace(/^\s+/g, '');
}
export const rightTrim = (string) => {
if (!string) return string;
return str.replace(/\s+$/g, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment