movie-title-fetcher
v1.0.0
Published
You can use this library to validate your answer before you submit your code.
Readme
Movie Titles Challenge Validator
You can use this library to validate your answer before you submit your code.
Install
$ npm install movie-titles-fetcherUsage
const MovieTitlesFetcher = require("movie-title-fetcher");
const fetcher = new MovieTitlesFetcher();
fetcher.get("spiderman").then(result => {
// All titles including "spiderman" are returned
console.log(result);
});