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:
457 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var $TypeError = require('es-errors/type');
|
---|
| 4 |
|
---|
| 5 | var Get = require('./Get');
|
---|
| 6 | var ToLength = require('./ToLength');
|
---|
[79a0317] | 7 |
|
---|
| 8 | var isObject = require('../helpers/isObject');
|
---|
[d565449] | 9 |
|
---|
| 10 | // https://262.ecma-international.org/11.0/#sec-lengthofarraylike
|
---|
| 11 |
|
---|
| 12 | module.exports = function LengthOfArrayLike(obj) {
|
---|
[79a0317] | 13 | if (!isObject(obj)) {
|
---|
[d565449] | 14 | throw new $TypeError('Assertion failed: `obj` must be an Object');
|
---|
| 15 | }
|
---|
| 16 | return ToLength(Get(obj, 'length'));
|
---|
| 17 | };
|
---|
| 18 |
|
---|
| 19 | // TODO: use this all over
|
---|
Note:
See
TracBrowser
for help on using the repository browser.