Files
novarix.uk/node_modules/es-abstract/helpers/isPropertyKey.js
T
Kismet Hasanaj 39a8a128be including-modules
2026-05-03 00:14:08 +02:00

6 lines
140 B
JavaScript

'use strict';
module.exports = function isPropertyKey(argument) {
return typeof argument === 'string' || typeof argument === 'symbol';
};