run prettier(2.0.5) (#1438)

This commit is contained in:
Severiano Badajoz
2020-05-04 10:26:42 -07:00
committed by GitHub
parent b255e32548
commit 6cccc41c0f
118 changed files with 1979 additions and 1584 deletions
+3 -3
View File
@@ -70,7 +70,7 @@ export function decodeMatrixFBS(arrayBuffer, inplace = false) {
nCols,
columns,
colIdx,
rowIdx: null
rowIdx: null,
};
}
@@ -102,9 +102,9 @@ export function encodeMatrixFBS(df) {
let encColumns;
if (shape[0] > 0 && shape[1] > 0) {
const columns = df.columns().map(col => col.asArray());
const columns = df.columns().map((col) => col.asArray());
const cols = columns.map(carr => {
const cols = columns.map((carr) => {
let uType;
let tarr;
if (isTypedArray(carr)) {