astro-ghostcms/.pnpm-store/v3/files/42/6ae0130d9ee73aef09e69e7f2d4...

8 lines
202 B
Plaintext
Raw Normal View History

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