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

console-timestamp

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

console-timestamp - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

console-timestamp.js

@@ -8,3 +8,3 @@ var fixDigits = function (input, length) {

exports.timestamp = function (format) {
exports = function (format) {
var date = new Date();

@@ -11,0 +11,0 @@ var out = format || "hh:mm:ss";

{
"name": "console-timestamp",
"version": "0.1.2",
"version": "0.1.3",
"description": "Simple date formatter for logging purposes",

@@ -5,0 +5,0 @@ "main": "console-timestamp.js",

console-timestamp
=================
It's a simple date formatter for Node.js. Perfect for logging.
There's one function: ```timestamp()```
You can call it with a string argument which becomes the format (defaults to ```hh:mm:ss```). It replaces specific parts of this string:
* ```YYYY``` with 4-digit Year
* ```YY``` with 2-digit Year
* ```MM``` with Month
* ```DD``` with Day
* ```hh``` with Hours
* ```mm``` with Minutes
* ```ss``` with Seconds
* ```iii``` with Miliseconds
Examples
=================
```javascript
console.log(timestamp()); //15:43:20
console.log(timestamp('DD-MM-YYYY hh:mm:ss:iii')); //04-07-2014 14:32:45:891
console.log(timestamp('[SERVER TIME hh:mm] message: ')); //[SERVER TIME 14:23] message:
```
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