版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

11 行
239 B

  1. 'use strict';
  2. const path = require('path');
  3. const minimatch = require('minimatch');
  4. const dot = { dot: true };
  5. module.exports = function(dir, filename) {
  6. return !minimatch(path.resolve(dir, filename), path.join(dir, '**'), dot);
  7. };