mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-08 05:35:22 +00:00
13 lines
184 B
Python
13 lines
184 B
Python
import os
|
|
import re
|
|
|
|
|
|
def get_file_dirname():
|
|
return os.path.dirname(__file__)
|
|
|
|
|
|
path_join = os.path.join
|
|
|
|
|
|
def str_slice(str: str, first_index: int):
|
|
return str[first_index:]
|