DIR: /proc/1991109/root/usr/share/nodejs/core-js-pure/internals/ |
Current File : //proc/1991109/root/usr/share/nodejs/core-js-pure/internals/to-property-key.js |
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 + ''; }; |