ohctechv3/.svn/pristine/2d/2d3c3a15918f88baa7a4454c4389b3f45269e2cd.svn-base
2024-10-28 15:03:36 +05:30

8 lines
202 B
Plaintext

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