source: imaps-frontend/node_modules/flat-cache/src/del.js@ d565449

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
RevLine 
[d565449]1var rimraf = require('rimraf').sync;
2var fs = require('fs');
3
4module.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.