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