exists.js 158 B

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