Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-abstract/2022/IsPropertyKey.js
r0c6b92a r79a0317 1 1 'use strict'; 2 3 var isPropertyKey = require('../helpers/isPropertyKey'); 2 4 3 5 // https://262.ecma-international.org/6.0/#sec-ispropertykey 4 6 5 7 module.exports = function IsPropertyKey(argument) { 6 return typeof argument === 'string' || typeof argument === 'symbol';8 return isPropertyKey(argument); 7 9 };
Note:
See TracChangeset
for help on using the changeset viewer.