all files / assets/ index.js

100% Statements 3/3
100% Branches 0/0
100% Functions 1/1
100% Lines 3/3
1 2 3 4 5 6 7 8 9 10             
#!/usr/bin/env node
 
/// <reference path="./typings/main.d.ts" />
var testplugin = {
    logSomething: function () {
        console.log("only function executed");
    }
};
module.exports = testplugin;