gpt4 book ai didi

node.js - 如何使用 createWriteStream 避免 "Octal literals are not allowed in strict mode"

转载 作者:IT老高 更新时间:2023-10-28 21:55:38 24 4
gpt4 key购买 nike

我有以下代码

fs.createWriteStream( fileName, {
flags: 'a',
encoding: 'utf8',
mode: 0644
});

我收到一个 lint 错误

Octal literals are not allowed in strict mode.

执行此代码的正确方法是什么,这样我就不会收到 lint 错误?

最佳答案

我在景观序列中使用它时遇到了这个问题:

console.log('\033c'); // Clear screen

我所要做的就是将它转换为十六进制

console.log('\x1Bc'); // Clear screen

关于node.js - 如何使用 createWriteStream 避免 "Octal literals are not allowed in strict mode",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23609042/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com