无论如何不写这个:
import {replace_in_mtstr, tot_width, rationalize, eval_expression, ascii_to_latex, latex_to_ascii, getIndicesOf, cleanIndices, change_sign, exponentiate, multiply_grouped_nodes, flip_fraction, add_brackets, are_of_type, any_of_type, have_same_ancestors, have_same_type, have_same_text, have_single_factor, have_same_denom, are_same_terms, get_prev, get_next, get_all_next, has_op, parse_mtstr, parse_poly, prepare} from "./functions";
ES6中的?这些是不同文件中的所有导出函数。关闭的事情我知道import * as object from 'file';
。但是,我希望直接使用这些函数,而不是在对象中。这在ES6中是否可行?
答案 0 :(得分:2)
如评论所示,这是不可能的。