Song.js 149 B

1234567
  1. function Song() {
  2. }
  3. Song.prototype.persistFavoriteStatus = function(value) {
  4. // something complicated
  5. throw new Error("not yet implemented");
  6. };