路泰科技体检小程序UI设计新版本
qx
2025-08-06 fcc0076c3507bc4e544c3cb3915204937fa46f60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "Glob.hh"
 
#ifdef __wasm32__
extern "C" bool wasm_regex_match(const char *s, const char *regex);
#endif
 
Glob::Glob(std::string raw) {
  mRaw = raw;
  mHash = std::hash<std::string>()(raw);
  #ifndef __wasm32__
    mRegex = std::regex(raw);
  #endif
}
 
bool Glob::isIgnored(std::string relative_path) const {
  // Use native JS regex engine for wasm to reduce binary size.
  #ifdef __wasm32__
    return wasm_regex_match(relative_path.c_str(), mRaw.c_str());
  #else
    return std::regex_match(relative_path, mRegex);
  #endif
}