diff --git a/snippets/fromCamelCase.md b/snippets/fromCamelCase.md index dd6090cf2..452aef813 100644 --- a/snippets/fromCamelCase.md +++ b/snippets/fromCamelCase.md @@ -20,4 +20,5 @@ const fromCamelCase = (str, separator = '_') => fromCamelCase('someDatabaseFieldName', ' '); // 'some database field name' fromCamelCase('someLabelThatNeedsToBeDecamelized', '-'); // 'some-label-that-needs-to-be-decamelized' fromCamelCase('someJavascriptProperty', '_'); // 'some_javascript_property' +fromCamelCase('JSONToCSV', '.'); // 'json.to.csv' ```