Skip to content

Commit

Permalink
docs: add missing docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Metzener authored and anehx committed May 22, 2019
1 parent ecc2d89 commit bf860e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions addon/components/cf-field/input/table.js
Expand Up @@ -12,6 +12,10 @@ import { computed } from "@ember/object";
* corresponding babel-polyfill package. So we include this "manual" polyfill for now.
*
* https://github.com/babel/babel/issues/9749
*
* @function flat
* @param {Array} arrays The nested arrays
* @return {Array} The flattened array
*/
function flat(arrays) {
return [].concat.apply([], arrays);
Expand Down

0 comments on commit bf860e3

Please sign in to comment.