projecte_ionic/node_modules/es-abstract/2021/IsPropertyKey.js
2022-02-09 18:30:03 +01:00

8 lines
207 B
JavaScript
Executable file

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