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

@thiagoveras/toolbelt-api-test

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thiagoveras/toolbelt-api-test - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

6

build/index.d.ts

@@ -1,5 +0,5 @@

export default abstract class Display {
export declare abstract class Display {
private static dateDAO;
static time(): void;
static date(): void;
static time(): string;
static date(): string;
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Display = void 0;
class Display {
static time() {
console.log(this.dateDAO.toLocaleTimeString());
return this.dateDAO.toLocaleTimeString();
}
static date() {
console.log(this.dateDAO.toLocaleDateString());
return this.dateDAO.toLocaleDateString();
}
}
exports.default = Display;
exports.Display = Display;
Display.dateDAO = new Date();
{
"name": "@thiagoveras/toolbelt-api-test",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -10,3 +10,3 @@ "main": "build/index.js",

"format-lint": "yarn format && yarn lint",
"watch": "yarn build-clean && yarn nodemon",
"watch": "yarn build-clean && yarn tsc --watch",
"build-clean": "rm -rf build",

@@ -13,0 +13,0 @@ "build-incremental": "tsc --incremental",

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