f31bc55a51661fd967f8bb11e34269c10a7628c9cf642f5a15a167bf41d8f16a49c3ca9722a011f552adde4616be8e5e19d32c6cad2012b08a4df411276794 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. };