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

alpine-ts

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alpine-ts - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

7

package.json
{
"name": "alpine-ts",
"version": "0.3.2",
"version": "0.3.3",
"description": "Alpine-ts - the Apache Log Parser in Typescript",

@@ -44,4 +44,3 @@ "main": "src/index.js",

"author": "uriel chemouni <uchemouni@gmail.com>",
"contributors": [
{
"contributors": [{
"name": "Bjørn Hell Larsen",

@@ -65,2 +64,2 @@ "email": "blarsen@nonews.net"

]
}
}

@@ -11,3 +11,3 @@ # Alpine-ts

`alpine-ts` is a parser for Apache mod_log log files. It supports the three most common log formats
`alpine-ts` is a parser for Apache mod_log log files. It supports the three most common log formats

@@ -14,0 +14,0 @@ - the Common Log Format

@@ -76,3 +76,5 @@ /**

get extension(): string;
get date(): Date;
get timestamp(): number;
}
//# sourceMappingURL=alpineLine.d.ts.map

@@ -49,4 +49,12 @@ "use strict";

}
get date() {
if (!this.time)
return new Date();
return new Date(this.time.replace(':', ' '));
}
get timestamp() {
return this.date.getTime();
}
}
exports.AlpineLine = AlpineLine;
//# sourceMappingURL=alpineLine.js.map
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