main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
292 bytes
|
Rev | Line | |
---|
[d565449] | 1 | var rimraf = require('rimraf').sync;
|
---|
| 2 | var fs = require('fs');
|
---|
| 3 |
|
---|
| 4 | module.exports = function del(file) {
|
---|
| 5 | if (fs.existsSync(file)) {
|
---|
| 6 | //if rimraf doesn't throw then the file has been deleted or didn't exist
|
---|
| 7 | rimraf(file, {
|
---|
| 8 | glob: false,
|
---|
| 9 | });
|
---|
| 10 | return true;
|
---|
| 11 | }
|
---|
| 12 | return false;
|
---|
| 13 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.