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

furkot-driving-log

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

furkot-driving-log - npm Package Compare versions

Comparing version

to
2.0.0

5

History.md
2.0.0 / 2017-07-18
==================
* switch to streaming interace
1.0.1 / 2017-02-23

@@ -3,0 +8,0 @@ ==================

9

lib/driving-log.js

@@ -1,2 +0,1 @@

var buffer = require('./buffer');
var format = require('./format');

@@ -34,6 +33,4 @@

function drivingLog(options) {
var out = buffer(),
distanceUnit = options.metadata && options.metadata.units,
function drivingLog(out, options) {
var distanceUnit = options.metadata && options.metadata.units,
totals = {

@@ -98,3 +95,3 @@ driving: 0,

});
return out.toString();
out.end();
}
{
"name": "furkot-driving-log",
"version": "1.0.1",
"version": "2.0.0",
"description": "Generate CSV driving log from Furkot trip data.",

@@ -23,9 +23,14 @@ "homepage": "https://trips.furkot.com",

"devDependencies": {
"jshint": "^2.7.0",
"mocha": "^2.2.4",
"should": "^6.0.1"
"jshint": "~2",
"mocha": "~3",
"should": "~11",
"stream-buffers": "~3"
},
"scripts": {
"test": "make check"
}
},
"files": [
"index.js",
"lib"
]
}

@@ -20,3 +20,3 @@ [![NPM version][npm-image]][npm-url]

drivingLog(trip);
drivingLog(ostream, trip);
```

@@ -23,0 +23,0 @@