Formatting

This commit is contained in:
David Wu
2017-12-26 14:13:27 +01:00
committed by GitHub
parent fe45d6198e
commit 37386882a6

View File

@ -16,4 +16,5 @@ const toSnakeCase = str =>{
// toSnakeCase("some-javascript-property") -> 'some_javascript_property'
// toSnakeCase("some-mixed_string With spaces_underscores-and-hyphens") -> 'some_mixed_string_with_spaces_underscores_and_hyphens'
// toSnakeCase("AllThe-small Things") -> "all_the_small_things"
// toSnakeCase('IAmListeningToFMWhileLoadingDifferentURLOnMyBrowserAndAlsoEditingSomeXMLAndHTML') ->"i_am_listening_to_fm_while_loading_different_url_on_my_browser_and_also_editing_some_xml_and_html"```
// toSnakeCase('IAmListeningToFMWhileLoadingDifferentURLOnMyBrowserAndAlsoEditingSomeXMLAndHTML') -> "i_am_listening_to_fm_while_loading_different_url_on_my_browser_and_also_editing_some_xml_and_html"
```