github-pages-deploy-action/node_modules/@babel/runtime/helpers/toPropertyKey.js
2020-03-06 22:45:40 -05:00

10 lines
252 B
JavaScript

var _typeof = require("../helpers/typeof");
var toPrimitive = require("./toPrimitive");
function _toPropertyKey(arg) {
var key = toPrimitive(arg, "string");
return _typeof(key) === "symbol" ? key : String(key);
}
module.exports = _toPropertyKey;