gpt4 book ai didi

gulp - 如何使用 JavaScript 摆脱 gulp 文件中的严格使用

转载 作者:行者123 更新时间:2023-12-02 00:59:00 25 4
gpt4 key购买 nike

我需要删除所有“严格模式”。下面的代码运行没有错误,但我的“严格模式”;不会更改为 ;

gulp.task('bundle', function () {
var bundled = bundle(bundler())
if (!production) return bundled;
return bundled
.pipe(buffer())
.pipe(replace(/"use strict"'/g, ';')) // problem line

.pipe(plugins.uglify())
.pipe(plugins.rename({
suffix: '.min'
}))

.pipe(gulp.dest('dist/app'));
});

最佳答案

看起来你的正则表达式中有一个松散的单引号。

.pipe(replace(/"use strict"'/g, ';'))
here ----^

此正则表达式将匹配 'use strict'"use strict"

/('|")use strict\1/g

关于gulp - 如何使用 JavaScript 摆脱 gulp 文件中的严格使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30813562/

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