console-timestamp
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -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: | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3159
26