UNPKG
core-js-pure
Version:
alpha (3.0.0-alpha.4)
beta (3.0.0-beta.20)
latest (3.43.0)
3.43.0
3.42.0
3.41.0
3.40.0
3.39.0
3.38.1
3.38.0
3.37.1
3.37.0
3.36.1
3.36.0
3.35.1
3.35.0
3.34.0
3.33.3
3.33.2
3.33.1
3.33.0
3.32.2
3.32.1
3.32.0
3.31.1
3.31.0
3.30.2
3.30.1
3.30.0
3.29.1
3.29.0
3.28.0
3.27.2
3.27.1
3.27.0
3.26.1
3.26.0
3.25.5
3.25.4
3.25.3
3.25.2
3.25.1
3.25.0
3.24.1
3.24.0
3.23.5
3.23.4
3.23.3
3.23.2
3.23.1
3.23.0
3.22.8
3.22.7
3.22.6
3.22.5
3.22.4
3.22.3
3.22.2
3.22.1
3.22.0
3.21.1
3.21.0
3.20.3
3.20.2
3.20.1
3.20.0
3.19.3
3.19.2
3.19.1
3.19.0
3.18.3
3.18.2
3.18.1
3.18.0
3.17.3
3.17.2
3.17.1
3.17.0
3.16.4
3.16.3
3.16.2
3.16.1
3.16.0
3.15.2
3.15.1
3.15.0
3.14.0
3.13.1
3.13.0
3.12.1
3.12.0
3.11.3
3.11.2
3.11.1
3.11.0
3.10.2
3.10.1
3.10.0
3.9.1
3.9.0
3.8.3
3.8.2
3.8.1
3.8.0
3.7.0
3.6.5
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.0
3.4.8
3.4.7
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.2.1
3.2.0
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
3.0.0-beta.20
3.0.0-beta.19
3.0.0-beta.18
3.0.0-beta.17
3.0.0-beta.16
3.0.0-beta.15
3.0.0-beta.14
3.0.0-beta.13
3.0.0-beta.12
3.0.0-beta.11
3.0.0-beta.10
3.0.0-beta.9
3.0.0-beta.8
3.0.0-beta.7
3.0.0-beta.6
3.0.0-beta.5
3.0.0-beta.4
3.0.0-beta.3
3.0.0-beta.2
3.0.0-beta.1
3.0.0-alpha.4
3.0.0-alpha.3
3.0.0-alpha.2
3.0.0-alpha.1
0.0.1
Standard library
github.com/zloirock/core-js
zloirock/core-js
core-js-pure
/
internals
/
to-indexed-object.js
9 lines
(7 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
// toObject with fallback for non-array-like ES3 strings
var
IndexedObject
=
require
(
'../internals/indexed-object'
);
var
requireObjectCoercible =
require
(
'../internals/require-object-coercible'
);
module
.
exports
=
function
(
it
) {
return
IndexedObject
(
requireObjectCoercible
(it)); };