bpms_site/.svn/pristine/74/7448139086cbcd2ab9a8ff5087e91ca5cbfc9f02.svn-base
2025-11-02 16:38:49 +03:30

7 lines
193 B
Plaintext

export function _type_of(obj) {
"@swc/helpers - typeof";
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
}
export { _type_of as _ };