jeibo_workflow
Version:
Fast, and lightweight TypeScript boilerplate that export a single file. Tests in Mocha, Chai & Sinon. TSLint for better code quality.
24 lines (21 loc) • 618 B
JavaScript
/*
* jeibo_workflow.js
* @version 0.3.5
* @copyright (c) 2016 - KFlash
* @license MIT <undefined/blob/master/LICENSE>
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.jeibo_workflow = factory());
}(this, function () { 'use strict';
var jeibo = {
// 'a' should not be covered
a: function () {
var uncovered = true;
return uncovered;
},
b: function () { return true; }
};
return jeibo;
}));