在ES6中导入所有内容,但不在对象内导入

时间:2016-07-10 14:47:46

标签: import ecmascript-6

无论如何不写这个:

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中是否可行?

1 个答案:

答案 0 :(得分:2)

如评论所示,这是不可能的。