Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@types/calendar
Advanced tools
TypeScript definitions for calendar
npm install --save @types/calendar
This package contains type definitions for calendar (https://github.com/ramalho/calendar.js#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/calendar.
export type DayFormatter<T> = (day: Date) => T;
export type WeekFormatter<T, U> = (week: T[]) => U;
export const version: string;
export class Calendar {
/**
* @param firstWeekDay default is `0` (Sunday)
*/
constructor(firstWeekDay?: number);
monthDates<T = Date>(year: number, month: number, dayFormatter?: DayFormatter<T>): T[][];
monthDates<T, U>(
year: number,
month: number,
dayFormatter: DayFormatter<T>,
weekFormatter: WeekFormatter<T, U>,
): U[];
monthDays(year: number, month: number): number[][];
monthText(): string;
monthText(year: number, month: number): string;
weekStartDate(date: Date): Date;
}
These definitions were written by Florian Imdahl.
FAQs
TypeScript definitions for calendar
We found that @types/calendar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.