Plato on Github
Report Home
src/video.js
Maintainability
148.12
Lines of code
30
Difficulty
8.33
Estimated Errors
0.07
Function weight
By Complexity
By SLOC
define(function() { 'use strict'; var Video = (function() { var Video = function() { }; Video.prototype.loadFromFile = function() { }; Video.prototype.play = function() { }; Video.prototype.pause = function() { }; Video.prototype.stop = function() { }; return Video; })(); return Video; });