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

6 lines
227 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
import _typeof from "./typeof.js";
import toPrimitive from "./toPrimitive.js";
export default function _toPropertyKey(arg) {
var key = toPrimitive(arg, "string");
return _typeof(key) === "symbol" ? key : String(key);
2023-09-25 15:58:56 +08:00
}