| Ignored | Statements | Branches | Functions | Lines | none | 100% (13 / 13) |
77.78% (7 / 9) |
100% (4 / 4) |
100% (13 / 13) |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 1 1 1 1 1 1 1 1 1 1 1 1 1 | /* istanbul instrument in package swgg_google_translate */
/* jslint-utility2 */
/*jslint
bitwise: true,
browser: true,
maxerr: 4,
maxlen: 100,
node: true,
nomen: true,
regexp: true,
stupid: true
*/
(function () {
'use strict';
var local;
// run shared js-env code - init-before
(function () {
// init local
local = {};
// init modeJs
(function () {
try {
local.modeJs = typeof process.versions.node === 'string' &&
typeof require('http').createServer === 'function' &&
'node';
} catch (ignore) {
}
local.modeJs = local.modeJs || 'browser';
}());
// init global
local.global = local.modeJs === 'browser'
? window
: global;
// re-init local
local = local.global.local = (local.global.utility2 ||
require('./assets.utility2.rollup.js')).requireReadme();
// init test
local.testRunInit(local);
}());
// run shared js-env code - function
(function () {
return;
}());
}());
|