Files
pixelheros/extensions/Excel转JSON/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
walkpan 8f57f57c1d dd
2024-08-18 23:38:55 +08:00

6 lines
240 B
JavaScript

import _typeof from "@babel/runtime/helpers/typeof";
import toPrimitive from "./toPrimitive.js";
export default function _toPropertyKey(arg) {
var key = toPrimitive(arg, "string");
return _typeof(key) === "symbol" ? key : String(key);
}