mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (filepath) {
|
|
var file = this.store.get(filepath);
|
|
|
|
return file.contents !== null && file.state !== 'deleted';
|
|
};
|