blob: 06321400eabb7bc48655e1fa6c1e3cf68dd011fe [file] [log] [blame]
"use strict";
class Book {
constructor(title, author) {
this.title = title;
this.author = author;
}
}
module.exports = Book;