Skip to content

Commit

Permalink
docs: fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jun 24, 2017
1 parent d39f5a7 commit baa1955
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/data.convert.utils.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { isUndefined } from './util';

/**
* Converts the rows to data.
* Converts the rows to normalized data.
* @param {any[][]} rows The row data
* @return {any[][]}
* @return {Object[]}
*/
export const convertRowsToData = (rows) => {
const newRows = [];
Expand All @@ -23,9 +23,9 @@ export const convertRowsToData = (rows) => {
};

/**
* Converts the columns to data.
* Converts the columns to normalized data.
* @param {any[][]} columns The column data
* @return {any[][]}
* @return {Object[]}
*/
export const convertColumnsToData = (columns) => {
const newRows = [];
Expand Down

0 comments on commit baa1955

Please sign in to comment.