Skip to content

Instantly share code, notes, and snippets.

@fobiasmog
Last active March 23, 2023 11:26
Show Gist options
  • Save fobiasmog/5b48e0a750655a6c487fd439e30bb30c to your computer and use it in GitHub Desktop.
Save fobiasmog/5b48e0a750655a6c487fd439e30bb30c to your computer and use it in GitHub Desktop.
Заметки по JS
```
function getResponseErrors(errors) {
function deep(n) {
if (typeof(n) === 'object') return flatMapDeep(n, deep);
return n;
}
 
return flatMapDeep(errors, deep);
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment