GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

tests-js/bootstrap.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 5
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 0
nc 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 1
1
var fs = require('fs')
2
  , should = require('should')
3
  , twigSource = fs.readFileSync('./twig.dev.js', 'UTF-8')
4
  , window = {};
5
eval(twigSource);
0 ignored issues
show
Security Performance introduced by
Calls to eval are slow and potentially dangerous, especially on untrusted code. Please consider whether there is another way to achieve your goal.
Loading history...
6