New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

prx-podagent

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prx-podagent - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

gsa_agents.csv

6

index.js

@@ -48,3 +48,7 @@ const fs = require('fs');

DB = agents.map(agent => {
agent.regex = new RegExp(agent.regex);
if (agent.caseInsensitive) {
agent.regex = new RegExp(agent.regex, 'i');
} else {
agent.regex = new RegExp(agent.regex);
}
TAGS.forEach(t => {

@@ -51,0 +55,0 @@ agent[`${t}Id`] = parseInt(agent[t]) || null;

3

package.json
{
"name": "prx-podagent",
"version": "0.0.2",
"version": "0.0.3",
"description": "User-agent parser for common podcast clients",

@@ -8,2 +8,3 @@ "main": "index.js",

"test": "mocha test/*-test.js",
"unknowns": "mocha test/unknowns.js",
"lock": "node lock.js",

@@ -10,0 +11,0 @@ "prepublish": "node lock.js"

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc