frontend/.pnpm-store/v3/files/42/6ae0130d9ee73aef09e69e7f2d45a1c080f0a343f50d2b507412a3e17fea55e05a62f69ec9bc439ee1f8cebaae913cf07188f1e99e1d40a66306c9cabd6a06

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