Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

caa

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caa - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

7

index.js

@@ -46,5 +46,6 @@ "use strict";

// If X is not a top-level domain, then R(X) = R(P(X))
if (name.split(".").length > 1) {
const parent = name.split(".").splice(1).join(".");
// If X is not a top-level domain, then R(X) = R(P(X)
const parts = name.split(".");
if (parts.length > 1) {
const parent = parts.splice(1).join(".");
return await resolve({name: parent, socket, server, port});

@@ -51,0 +52,0 @@ } else {

{
"name": "caa",
"version": "1.1.0",
"version": "1.1.1",
"description": "rfc6844-conform CAA record lookup",

@@ -5,0 +5,0 @@ "author": "silverwind <me@silverwind.io>",

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