All files / pdf.js/lib/jasmine_examples Song.js

0% Statements 0/3
100% Branches 0/0
0% Functions 0/2
0% Lines 0/3
1 2 3 4 5 6 7 8 9 10                   
function Song() {
}
 
Song.prototype.persistFavoriteStatus = function(value) {
  // something complicated
  throw new Error("not yet implemented");
};
 
module.exports = Song;