Advertisement
vit134

camelCase to snake_case (Яндекс)

Nov 9th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.     camelCase to snake_case
  3. */
  4.  
  5. function camelToSnake(str) {
  6.     return str.replace(/([^A-Z])([A-Z])/g, '$1_$2').toLowerCase();
  7. }
  8.  
  9. console.log(camelToSnake('updatedAt'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement