blob: f43ab581c73e7e2cfe435f427aba67653a5a77c4 [file] [log] [blame]
'use strict';
// https://ecma-international.org/ecma-262/6.0/#sec-ispropertykey
module.exports = function IsPropertyKey(argument) {
return typeof argument === 'string' || typeof argument === 'symbol';
};