get_my/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
2022-08-05 16:55:56 -05:00

6 lines
No EOL
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);
}