Files
jasmine/lib/jasmine-core/example/src/Song.js
2020-02-29 04:30:03 -05:00

8 lines
150 B
JavaScript

function Song() {
}
Song.prototype.persistFavoriteStatus = function(value) {
// something complicated
throw new Error("not yet implemented");
};