bpms_site/.svn/pristine/ad/ad77bf06aff4672416fd6a33f145a52b197bee8f.svn-base
2025-11-02 16:38:49 +03:30

9 lines
216 B
Plaintext

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