update,
This commit is contained in:
10
task1/utils/readCell.js
Normal file
10
task1/utils/readCell.js
Normal file
@@ -0,0 +1,10 @@
|
||||
function readCell(cell) {
|
||||
var output = { state: "init", debug: {}, error: {} };
|
||||
|
||||
try {
|
||||
return cell.getValue() || "";
|
||||
} catch (error) {
|
||||
output = {...output, err: error}
|
||||
console.log(error);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user