12 lines
203 B
Python
12 lines
203 B
Python
|
|
from typing import Any
|
||
|
|
|
||
|
|
import orjson
|
||
|
|
|
||
|
|
|
||
|
|
def orjson_dumps(
|
||
|
|
obj: Any,
|
||
|
|
encoding: str = "utf-8",
|
||
|
|
option: int | None = None,
|
||
|
|
) -> str:
|
||
|
|
return orjson.dumps(obj, option=option).decode(encoding)
|