Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@types/strftime
Advanced tools
TypeScript definitions for strftime
npm install --save @types/strftime
This package contains type definitions for strftime (https://github.com/samsonjs/strftime).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/strftime.
declare module "strftime" {
type strftimeFunction = (format: string, date?: Date) => string;
namespace strftime {
/**
* Sets locale.
* @param {Locale} locale A locale.
* @return {strftimeFunction} A strftime function.
*/
export function localize(locale: Locale): strftimeFunction;
/**
* Sets timezone.
* @param {number|string} offset A offset.
* @return {strftimeFunction} A strftime function.
*/
export function timezone(offset: number | string): strftimeFunction;
/**
* Sets the timezone to UTC.
* @return {strftimeFunction} A strftime function.
*/
export function utc(): strftimeFunction;
/**
* Locale formats.
* @interface
*/
export interface LocaleFormats {
D?: string | undefined;
F?: string | undefined;
R?: string | undefined;
T?: string | undefined;
X?: string | undefined;
c?: string | undefined;
r?: string | undefined;
v?: string | undefined;
x?: string | undefined;
}
/**
* Locale.
* @interface
*/
export interface Locale {
days?: string[] | undefined;
shortDays?: string[] | undefined;
months?: string[] | undefined;
shortMonths?: string[] | undefined;
AM?: string | undefined;
PM?: string | undefined;
am?: string | undefined;
pm?: string | undefined;
formats: LocaleFormats;
}
}
/**
* Format a local time/date according to locale settings
* @param {string} format A format.
* @return {string} Returns a string formatted.
*/
function strftime(format: string): string;
/**
* Format a local time/date according to locale settings
* @param {string} format A format.
* @param {Date} date A date.
* @return {string} Returns a string formatted according format using the given date or the current local time.
*/
function strftime(format: string, date: Date): string;
export = strftime;
}
These definitions were written by Cyril Schumacher.
FAQs
TypeScript definitions for strftime
We found that @types/strftime 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.