Sha256: 9fe2c8c491706f3ad77ebd9b384a4ef77d8bf6f22f5a173c7c115cb2c6cf2eed

Contents?: true

Size: 387 Bytes

Versions: 1

Compression:

Stored size: 387 Bytes

Contents

var path = require('path');
module.exports = function (matchFn, transformFn, verbose) {
    console.error('PRH: MatchFn was a ' + typeof matchFn);
    console.error('PRH: TransformFn was a ' + typeof transformFn);
    console.error('PRH: Verbose was ' + verbose);
    return function (file) {
        var base = path.basename(file);
        console.error('PRH: Saw ' + base);
    };
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cssesc-source-0.1.0 vendor/node_modules/istanbul/test/cli/sample-project/node_modules/post-require/hook.js