IPA: /huˌɑɹˈɛl/
Find out who the author(s) is/are from an input URL.
npm install --save whorlconst WHORL = require('whorl')
WHORL('http://www.nytimes.com/2007/05/13/us/13names.html')
.then((name) => {
console.log(name) // ⇒ 'The Associated Press'
})If no author(s) can be deduced or the input URL is not valid, whorl will return null.
Read the latest test results.
Returns a Promise for an author String.
Type: String
The URL for which to retrieve an author string.