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

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';
};