mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-26 18:02:21 +03:00
17 lines
334 B
JavaScript
17 lines
334 B
JavaScript
var e = ' is not implemented for Node.js!';
|
|
|
|
exports.ls = function() {
|
|
throw new Error('fs.ls' + e);
|
|
};
|
|
|
|
exports.toDir = function() {
|
|
throw new Error('fs.toDir' + e);
|
|
};
|
|
|
|
exports.mkPath = function() {
|
|
throw new Error('fs.mkpath' + e);
|
|
};
|
|
|
|
exports.copyFileSync = function() {
|
|
throw new Error('fs.copyFileSync' + e);
|
|
};
|