IsPropertyKey.js 223 B

123456789
  1. 'use strict';
  2. var isPropertyKey = require('../helpers/isPropertyKey');
  3. // https://262.ecma-international.org/6.0/#sec-ispropertykey
  4. module.exports = function IsPropertyKey(argument) {
  5. return isPropertyKey(argument);
  6. };