projecte_ionic/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
2022-02-09 18:30:03 +01:00

6 lines
No EOL
240 B
JavaScript
Executable file

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);
}