Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/istanbul-lib-instrument/dist/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

42 lines (34 sloc)
1.11 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.createInstrumenter = createInstrumenter; | |
Object.defineProperty(exports, "programVisitor", { | |
enumerable: true, | |
get: function () { | |
return _visitor.default; | |
} | |
}); | |
Object.defineProperty(exports, "readInitialCoverage", { | |
enumerable: true, | |
get: function () { | |
return _readCoverage.default; | |
} | |
}); | |
exports.defaultOpts = void 0; | |
var _schema = require("@istanbuljs/schema"); | |
var _instrumenter = _interopRequireDefault(require("./instrumenter")); | |
var _visitor = _interopRequireDefault(require("./visitor")); | |
var _readCoverage = _interopRequireDefault(require("./read-coverage")); | |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | |
/** | |
* createInstrumenter creates a new instrumenter with the | |
* supplied options. | |
* @param {Object} opts - instrumenter options. See the documentation | |
* for the Instrumenter class. | |
*/ | |
function createInstrumenter(opts) { | |
return new _instrumenter.default(opts); | |
} | |
const defaultOpts = _schema.defaults.instrumenter; | |
exports.defaultOpts = defaultOpts; |