main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
398 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var KeyForSymbol = require('./KeyForSymbol');
|
---|
[79a0317] | 4 |
|
---|
| 5 | var isObject = require('../helpers/isObject');
|
---|
[d565449] | 6 |
|
---|
| 7 | // https://262.ecma-international.org/14.0/#sec-canbeheldweakly
|
---|
| 8 |
|
---|
| 9 | module.exports = function CanBeHeldWeakly(v) {
|
---|
[79a0317] | 10 | if (isObject(v)) {
|
---|
[d565449] | 11 | return true; // step 1
|
---|
| 12 | }
|
---|
| 13 | if (typeof v === 'symbol' && typeof KeyForSymbol(v) === 'undefined') {
|
---|
| 14 | return true; // step 2
|
---|
| 15 | }
|
---|
| 16 | return false; // step 3
|
---|
| 17 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.