blob: 4b1c5766a4c66b1d1658f8907f991b9699178390 [file] [log] [blame]
'use strict';
module.exports = function isPropertyKey(argument) {
return typeof argument === 'string' || typeof argument === 'symbol';
};