如何从内置于 javascript 的 class 模块中导出函数?

How do I export a function from a module for a class that is built into javascript?

我正在尝试导出一个函数以在另一个模块中使用,但它是我添加到字符串中的一个 javascript class.

如何导出函数以在另一个模块中使用?

这是我试过的方法,但没有用

String.prototype.trimChars = function(chars) {...}
export {String}

如何才能将此函数作为 trimChars 添加到字符串 class?

您可以简单地放弃导出,并在另一个模块中导入。但是,不建议像这样修补对象,因为它会引入问题,例如,浏览器向 String 添加了一个恰好具有相同名称的新函数。

// in the other module
import "path/to/module.js";