You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
405 B
15 lines
405 B
'use strict'; |
|
|
|
var GetIntrinsic = require('get-intrinsic'); |
|
|
|
var $String = GetIntrinsic('%String%'); |
|
|
|
var ToPrimitive = require('./ToPrimitive'); |
|
var ToString = require('./ToString'); |
|
|
|
// https://ecma-international.org/ecma-262/6.0/#sec-topropertykey |
|
|
|
module.exports = function ToPropertyKey(argument) { |
|
var key = ToPrimitive(argument, $String); |
|
return typeof key === 'symbol' ? key : ToString(key); |
|
};
|
|
|