Function.prototype.toString()
现在返回源代码文本的确切切片,包括空格和注释。以下是一个比较旧行为和新行为的示例
// Note the comment between the `function` keyword
// and the function name, as well as the space following
// the function name.
function /* a comment */ foo () {}
// Previously, in V8:
foo.toString();
// → 'function foo() {}'
// ^ no comment
// ^ no space
// Now:
foo.toString();
// → 'function /* comment */ foo () {}'
功能支持 #
- Chrome: 自版本 66 起支持
- Firefox: 支持
- Safari: 不支持
- Node.js: 自版本 8 起支持
- Babel: 不支持