You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
First pass at linting lib dir
This commit is contained in:
@ -3,7 +3,6 @@ const { time } = require('lib/time-utils.js');
|
||||
const FsDriverBase = require('lib/fs-driver-base');
|
||||
|
||||
class FsDriverNode extends FsDriverBase {
|
||||
|
||||
fsErrorToJsError_(error, path = null) {
|
||||
let msg = error.toString();
|
||||
if (path !== null) msg += '. Path: ' + path;
|
||||
@ -183,7 +182,6 @@ class FsDriverNode extends FsDriverBase {
|
||||
if (encoding === 'ascii') return buffer.toString('ascii');
|
||||
throw new Error('Unsupported encoding: ' + encoding);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports.FsDriverNode = FsDriverNode;
|
||||
module.exports.FsDriverNode = FsDriverNode;
|
||||
|
Reference in New Issue
Block a user