Urara-Blog/node_modules/.pnpm-store/v3/files/0a/277d7aa591bc7ea5f5e24158502852e0b2a1ad8ef9570bdd6cd1a7b380c49a88e172aed1174202d45f4c48674b46e177db1e268db7807d739e034474b78055
2022-08-14 01:14:53 +08:00

7 lines
207 B
Text

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