Strip LoaderWebpack 加载器
Strip Loader 是 Webpack 加载器,它能剥离你产品代码里的任意一个函数。
示例代码:
var debug = require('debug')('MyFile'); var makeFoo = function () { // The following two lines of code will be stripped with our webpack loader debug('makeFoo called'); debug('makeFoo args', arguments); // This code would remain return 'Foo'; };
评论