Files
starface-outlook-sync-addin/node_modules/@swc/helpers/cjs/_to_property_key.cjs
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

12 lines
283 B
JavaScript

"use strict";
var _to_primitive = require("./_to_primitive.cjs");
var _type_of = require("./_type_of.cjs");
function _to_property_key(arg) {
var key = _to_primitive._(arg, "string");
return _type_of._(key) === "symbol" ? key : String(key);
}
exports._ = _to_property_key;