Skip to content

Commit

Permalink
[doc] Add return documentation to util function
Browse files Browse the repository at this point in the history
  • Loading branch information
kobawan authored and eliamaino-fp committed May 24, 2019
1 parent b7d5299 commit 5b44778
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ function flatten(arr) {
* Joins two arrays without duplicates
* @param {Array} arr1
* @param {Array} arr2
* @return {Array}
*/
function joinArrayUnique(arr1 = [], arr2 = []) {
const firstArr = Array.isArray(arr1) ? arr1 : [];
Expand Down

0 comments on commit 5b44778

Please sign in to comment.