mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
8 lines
207 B
JavaScript
Generated
8 lines
207 B
JavaScript
Generated
'use strict';
|
|
|
|
// https://ecma-international.org/ecma-262/6.0/#sec-ispropertykey
|
|
|
|
module.exports = function IsPropertyKey(argument) {
|
|
return typeof argument === 'string' || typeof argument === 'symbol';
|
|
};
|