FrontPastel/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js

6 lines
205 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
import _typeof from "./typeof.js";
import toPrimitive from "./toPrimitive.js";
export default function toPropertyKey(t) {
var i = toPrimitive(t, "string");
return "symbol" == _typeof(i) ? i : i + "";
}