blob: 4b1c9c71461ca474f34b517c0bc04e5d700280f2 [file] [log] [blame] [edit]
'use strict';
var isPropertyKey = require('../helpers/isPropertyKey');
// https://262.ecma-international.org/6.0/#sec-ispropertykey
module.exports = function IsPropertyKey(argument) {
return isPropertyKey(argument);
};