edge-useragent
Version:
High performance user agent string parser for modern environments. Part of the Edge Platform.
16 lines (14 loc) • 325 B
JavaScript
/**
* Update our definition file.
*/
require("../src/update").update((err, data) => {
if (err) {
console.error("Update unsuccessfull due to reasons")
console.log(err.message)
console.log(err.stack)
return
}
console.log(
"Successfully fetched and generated new parsers from the internets."
)
})