All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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