Import 导入ES6中的所有内容,但不导入对象内部

Import 导入ES6中的所有内容,但不导入对象内部,import,ecmascript-6,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, ha

是否有任何理由不写这篇文章:

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*作为“file”中的对象。但是,我希望函数直接可用,而不是在对象内部。这在ES6中可能吗?

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

不可能……另请参阅和此处链接的问题。这是不可能的。您可以从“/functions”执行
导入函数
并访问
函数
对象中导出的所有函数。好的,那么:P.谢谢你让我知道。