gulp-babel icon indicating copy to clipboard operation
gulp-babel copied to clipboard

How to disable translate the chinese to unicode?

Open leitingx762 opened this issue 6 years ago • 0 comments

my gulpfiles.js is

    return gulp.src(jsurl)
        .pipe(babel({ presets: ["@babel/env"] }))
        .on("error", err)
        .pipe(rename({ suffix: ".min" }))
        .pipe(gulp.dest(jsurl.replace("!(*.min).js", "")))
        .on("end", ok)
}

then... My Chinese String has be translate to unicode... QQ截图20190613151151

I don't want to translate it... help me...

leitingx762 avatar Jun 13 '19 07:06 leitingx762