1.0.4 • Published 3 years ago

is-opds-agent v1.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
3 years ago

README.md

check user-agent is opds reader

install

yarn add is-opds-agent
yarn-tool add is-opds-agent
yt add is-opds-agent
import isOPDSAgent from 'is-opds-agent';
import assert from 'assert';

let ua = `OPDS/Stanza iPhone/Aldiko/Moon+ Reader(Android)`;

let result = isOPDSAgent(ua);

console.log(ua , `=>`, !!result, result);

assert(result);