isPropertyKey.js 140 B

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