GT2/Ejectable/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js

6 lines
240 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
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);
}