UNPKG

158 BJavaScriptView Raw
1'use strict';
2
3module.exports = function (filepath) {
4 var file = this.store.get(filepath);
5
6 return file.contents !== null && file.state !== 'deleted';
7};