is-opds-agent
v1.0.4
Published
check user-agent is opds reader
Downloads
20
Maintainers
Readme
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);