You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add optional afterExtractor: function(data, options) which can be used for modifying data after successful extraction.
Furthermore it can be used for adding new urls to the extraction queue.
Should return one of undefined, null, [], {} or an object which should be saved:
The options object has the structure {urls: []} where you can new urls which should be added to the queue-
If an object is returned test if data lives up the requirements of saving the data.
If new urls add them to extraction queue. The extraction queue should probably be
a Set instead of an array to avoid duplicates
The text was updated successfully, but these errors were encountered:
Add optional afterExtractor: function(data, options) which can be used for modifying data after successful extraction.
Furthermore it can be used for adding new urls to the extraction queue.
Should return one of
undefined, null, [], {}
or an object which should be saved:The options object has the structure
{urls: []}
where you can new urls which should be added to the queue-If an object is returned test if data lives up the requirements of saving the data.
If new urls add them to extraction queue. The extraction queue should probably be
a Set instead of an array to avoid duplicates
The text was updated successfully, but these errors were encountered: