📄 isPropertyKey.js
/home/palash/git/site/node_modules/es-abstract/helpers/isPropertyKey.js
Language: js • Lines: 5
'use strict';

module.exports = function isPropertyKey(argument) {
	return typeof argument === 'string' || typeof argument === 'symbol';
};