UNPKG
jscover-shim
Version:
latest (1.0.0)
1.0.0
A lightweight shim between node and jscover-bin.
github.com/fushi/jscover-shim
fushi/jscover-shim
jscover-shim
/
index.js
14 lines
(8 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var
jscover =
require
(
'./lib/jscover'
);
module
.
exports
=
function
(
options, callback
) { options = options || []; callback = callback ||
function
(
output, err
) {
console
.
log
(output); };
jscover
(options, callback); };