2022-03-11 05:29:05 +00:00
|
|
|
var utils/*:any*/ = {
|
|
|
|
encode_col: encode_col,
|
|
|
|
encode_row: encode_row,
|
|
|
|
encode_cell: encode_cell,
|
|
|
|
encode_range: encode_range,
|
|
|
|
decode_col: decode_col,
|
|
|
|
decode_row: decode_row,
|
|
|
|
split_cell: split_cell,
|
|
|
|
decode_cell: decode_cell,
|
|
|
|
decode_range: decode_range,
|
|
|
|
format_cell: format_cell,
|
|
|
|
sheet_add_aoa: sheet_add_aoa,
|
|
|
|
sheet_add_json: sheet_add_json,
|
|
|
|
sheet_add_dom: sheet_add_dom,
|
|
|
|
aoa_to_sheet: aoa_to_sheet,
|
|
|
|
json_to_sheet: json_to_sheet,
|
|
|
|
table_to_sheet: parse_dom_table,
|
|
|
|
table_to_book: table_to_book,
|
|
|
|
sheet_to_csv: sheet_to_csv,
|
|
|
|
sheet_to_txt: sheet_to_txt,
|
|
|
|
sheet_to_json: sheet_to_json,
|
2022-03-20 01:54:41 +00:00
|
|
|
sheet_to_html: sheet_to_html,
|
2022-03-11 05:29:05 +00:00
|
|
|
sheet_to_formulae: sheet_to_formulae,
|
|
|
|
sheet_to_row_object_array: sheet_to_json,
|
|
|
|
sheet_get_cell: ws_get_cell_stub,
|
|
|
|
book_new: book_new,
|
|
|
|
book_append_sheet: book_append_sheet,
|
|
|
|
book_set_sheet_visibility: book_set_sheet_visibility,
|
|
|
|
cell_set_number_format: cell_set_number_format,
|
|
|
|
cell_set_hyperlink: cell_set_hyperlink,
|
|
|
|
cell_set_internal_link: cell_set_internal_link,
|
|
|
|
cell_add_comment: cell_add_comment,
|
|
|
|
sheet_set_array_formula: sheet_set_array_formula,
|
|
|
|
consts: {
|
|
|
|
SHEET_VISIBLE: 0,
|
|
|
|
SHEET_HIDDEN: 1,
|
|
|
|
SHEET_VERY_HIDDEN: 2
|
2017-05-11 07:29:59 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|