Strip Loader - Webpack 加载器


BSD
跨平台
JavaScript

软件简介

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';
};