Frontend/25_01_07/mai/node_modules/es-abstract/2020/IsPropertyKey.js

10 lines
223 B
JavaScript
Raw Permalink Normal View History

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