mirror of
https://github.com/jprichardson/node-fs-extra.git
synced 2026-01-25 16:42:57 +00:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
var fs = require('fs');
|
|
|
|
function touch(path, callback) {
|
|
fs.writeFile(path, '', callback);
|
|
}
|
|
|
|
function touchSync(path) {
|
|
|
|
}
|
|
|
|
module.exports.touch = touch; |