1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-08-08 06:43:49 +00:00

Fix missing require in filesystem adator

This commit is contained in:
Jermolene 2014-04-03 15:40:30 +01:00
parent c1bb7b00c1
commit 93c29bd388

View File

@ -13,8 +13,8 @@ A sync adaptor module for synchronising with the local filesystem via node.js AP
"use strict"; "use strict";
// Get a reference to the file system // 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) { function FileSystemAdaptor(syncer) {
var self = this; var self = this;