-
Notifications
You must be signed in to change notification settings - Fork 0
/
fnmatch.js
35 lines (28 loc) · 1.1 KB
/
fnmatch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export const __name__ = 'fnmatch';
export const __loader__ = `\
Filename matching with shell patterns.
fnmatch(FILENAME, PATTERN) matches according to the local convention.
fnmatchcase(FILENAME, PATTERN) always takes case in account.
The functions operate by translating the pattern into a regular
expression.
They cache the compiled regular expressions for speed.
The function translate(PATTERN) returns a regular expression
corresponding to PATTERN. (It does not compile it.)
`;
export const filter = function() {};
export const fnmatch = function() {};
export const fnmatchcase = function() {};
export const functools = function() {};
export const posixpath = function() {};
export const translate = function() {};
/*
export const os = function() {};
export const re = function() {};
export const __all__ = function() {};
export const __builtins__ = function() {};
export const __cached__ = function() {};
export const __doc__ = function() {};
export const __file__ = function() {};
export const __package__ = function() {};
export const __spec__ = function() {};
export const _compile_pattern = function() {};*/