mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-26 16:44:42 +00:00
Fix missing require in filesystem adator
This commit is contained in:
@@ -13,8 +13,8 @@ A sync adaptor module for synchronising with the local filesystem via node.js AP
|
||||
"use strict";
|
||||
|
||||
// Get a reference to the file system
|
||||
var fs = !$tw.browser ? require("fs") : null;
|
||||
|
||||
var fs = !$tw.browser ? require("fs") : null,
|
||||
path = !$tw.browser ? require("path") : null;
|
||||
|
||||
function FileSystemAdaptor(syncer) {
|
||||
var self = this;
|
||||
|
||||
Reference in New Issue
Block a user