aozhiwei 0a973d12e3 1
2022-01-27 17:32:21 +08:00

8 lines
207 B
JavaScript

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