-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Makes parse
function public
#150
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -173,7 +173,7 @@ export default class Sitemapper { | |||
/** | |||
* Requests the URL and uses parseStringPromise to parse through and find the data | |||
* | |||
* @private | |||
* @public |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does changing this comment change any functionality? Or is it more of a formal way of defining it public. I believe in JS the comment doesn't actually prevent anything from being accessed.
I don't see any issues with defining it as public.
* | ||
* @param url URL to the sitemap.xml file | ||
*/ | ||
parse(url?: string): Promise<ParseData>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like ParseData is throwing some errors
References #149