'use strict'; exports.authors = [ { name: 'Beverly Cleary', born: 'April 12, 1916', description: 'American writer of fiction for children and young adults.' }, { name: 'David Sedaris', born: 'December 26, 1956', description: 'American humorist, comedian, author, and radio contributor' }, { name: 'Franz Kafka', born: '3 July 1883', die: '3 June 1924', description: 'German-language writer of novels and short stories who is widely regarded as one of the major figures of 20th-century literature' }, { name: 'Johann Wolfgang Von Goethe', born: '28 August 1749', die: '22 March 1832', description: 'German writer and statesman' } ]; exports.books = [ { author: 'Beverly Cleary', title: 'Ramona the Pest', type: ['Paperback'], date: 'March 19, 2013' }, { author: 'Beverly Cleary', title: 'The Ralph Mouse Collection (The Mouse and the Motorcycle / Runaway Ralph / Ralph S. Mouse)', type: ['Paperback'], date: 'August 15, 2006' }, { author: 'Beverly Cleary', title: 'Ramona Quimby, Age 8', type: ['Paperback'], date: 'January 26, 2016' }, { author: 'Beverly Cleary', title: 'Socks', type: ['Paperback'], date: 'April 14, 2015' }, { author: 'David Sedaris', title: 'Me Talk Pretty One Day', type: ['Paperback'], date: 'June 5, 2001' }, { author: 'David Sedaris', title: 'When You Are Engulfed in Flames', type: ['Paperback'], date: 'June 2, 2009' }, { author: 'David Sedaris', title: 'Naked Paperback', date: 'June 1, 1998' }, { author: 'Franz Kafka', title: 'The Complete Stories', type: ['Paperback', 'Deckle Edge'], date: 'November 14, 1995' }, { author: 'Franz Kafka', title: 'The Trial: A New Translation Based on the Restored Text (The Schocken Kafka Library)', type: ['Paperback'], date: 'May 25, 1999' }, { author: 'Franz Kafka', title: 'The Metamorphosis', type: ['Paperback'], date: 'October 11, 2011' }, { author: 'Johann Wolfgang Von Goethe', title: 'Faust: A Tragedy (Norton Critical Editions) Second Edition Edition' }, { author: 'Johann Wolfgang Von Goethe', title: 'Theory of Colours (Dover Fine Art, History of Art)', type: ['Paperback'], date: 'October 6, 2006' }, { author: 'Johann Wolfgang Von Goethe', title: 'Italian Journey: 1786-1788 (Penguin Classics)', type: ['Paperback'], date: 'December 1, 1992' }, { author: 'Johann Wolfgang Von Goethe', title: 'The Sorrows of Young Werther', type: ['Paperback'], date: 'October 23, 2013' }, { author: 'Johann Wolfgang Von Goethe', title: 'The Metamorphosis of Plants', type: ['Hardcover'], date: 'September 11, 2009' }, { author: 'Johann Wolfgang Von Goethe', title: 'The Sufferings of Young Werther: A New Translation by Stanley Corngold', type: ['Hardcover'], date: 'November 14, 2011' }, { author: 'Johann Wolfgang Von Goethe', title: 'Reineke Fuchs (Dodo Press) (German Edition)', language: 'German', type: ['Paperback'], date: 'December 5, 2008' }, { author: 'Johann Wolfgang Von Goethe', title: 'Maxims and Reflections', type: ['Paperback'], date: 'September 13, 2011' } ]; exports.comments = [ { name: 'foo', book: 'Maxims and Reflections', comment: `it's very interesting book, really` }, { name: 'foo', book: 'Faust: A Tragedy (Norton Critical Editions) Second Edition Edition', comment: `cool!` }, { name: 'bar', book: 'Socks', comment: `I like 'Paperback' format` } ];