Files
jasmine/lib/jasmine-core/example/src/Song.js
Steve Gravrock 44f331f43d Updated the style of the examples
* const/let instead of var
* classes
* pass our own eslint checks
2022-09-17 12:00:20 -07:00

7 lines
125 B
JavaScript

class Song {
persistFavoriteStatus(value) {
// something complicated
throw new Error('not yet implemented');
}
}