mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-10-11 23:25:00 +00:00
9 lines
126 B
JavaScript
9 lines
126 B
JavaScript
'use strict';
|
|
|
|
function readDir(file, optResolver, onRead) {
|
|
// Do nothing for now
|
|
onRead();
|
|
}
|
|
|
|
module.exports = readDir;
|