hrms-manual/node_modules/es-abstract/2015/IsPropertyKey.js
2023-09-06 14:51:44 +07:00

7 lines
202 B
JavaScript

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