{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Developer

Glob Pattern

Glob Pattern Matching

A wildcard syntax for matching file paths using characters like * (any) and ? (single character).

Technical Detail

Glob Pattern is a fundamental concept in software development. Under the hood, wildcard involves structured data processing that follows well-defined specifications. Modern implementations typically handle glob pattern through standardized APIs available in all major programming languages. In JavaScript, the relevant Web APIs provide browser-native support without external libraries, while Python and other server-side languages offer equivalent functionality through standard library modules.

Example

```javascript
// Glob Pattern example
const input = 'sample data';
const result = process(input);
console.log(result);
```

Related Tools

Related Terms