1.0.0 • Published 5 years ago

movie-title-fetcher v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

Movie Titles Challenge Validator

You can use this library to validate your answer before you submit your code.

Install

$ npm install movie-titles-fetcher

Usage

const MovieTitlesFetcher = require("movie-title-fetcher");

const fetcher = new MovieTitlesFetcher();
fetcher.get("spiderman").then(result => {
  // All titles including "spiderman" are returned
  console.log(result);
});