Frontend/25_01_07/mai/node_modules/es-abstract/2022/IsPropertyKey.js
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00

10 lines
223 B
JavaScript

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