projecte_ionic/node_modules/core-js-pure/internals/to-property-key.js
2022-02-09 18:30:03 +01:00

10 lines
319 B
JavaScript
Executable file

var toPrimitive = require('../internals/to-primitive');
var isSymbol = require('../internals/is-symbol');
// `ToPropertyKey` abstract operation
// https://tc39.es/ecma262/#sec-topropertykey
module.exports = function (argument) {
var key = toPrimitive(argument, 'string');
return isSymbol(key) ? key : key + '';
};