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

@coozzy/cal-dav

Package Overview
Dependencies
Maintainers
3
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coozzy/cal-dav - npm Package Compare versions

Comparing version 2.6.22 to 2.6.23

0

dist/index.js

@@ -0,0 +0,0 @@ "use strict";

2

package.json
{
"name": "@coozzy/cal-dav",
"version": "2.6.22",
"version": "2.6.23",
"description": "Simple cal dav client.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -708,8 +708,8 @@ import * as ICAL from 'ical.js';

static parseEvent = (eventData: string): ICAL.Event => {
static parseEvent = (eventData: string): ICAL.EventOccurrence => {
const calData = ICAL.parse(eventData);
const comp = new ICAL.Component(calData);
const vevent = comp.getFirstSubcomponent('vevent');
const event = new ICAL.Event(vevent);
DefaultCalDavClient.extendEventWithProperties(event, event.startDate, event.endDate);
let event = new ICAL.EventOccurrence(vevent);
event = DefaultCalDavClient.extendEventWithProperties(event, event.startDate, event.endDate);
logger.info(`CalDavClient.parseEvent: Successfully parsed event ${event.uid}. `);

@@ -716,0 +716,0 @@ return event;

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