Blame view

node_modules/babel-loader/lib/utils/exists.js 234 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
  "use strict";
  
  module.exports = function (fileSystem, filename) {
    var exists = false;
  
    try {
      exists = fileSystem.statSync(filename).isFile();
    } catch (err) {
      if (err.code !== "ENOENT") throw err;
    }
  
    return exists;
  };