package.internals.to-property-key.js Maven / Gradle / Ivy
The newest version!
'use strict';
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 + '';
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy