mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 18:36:09 -07:00
15 lines
328 B
JavaScript
15 lines
328 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('../GetIntrinsic');
|
|
|
|
var $Object = GetIntrinsic('%Object%');
|
|
|
|
var CheckObjectCoercible = require('./CheckObjectCoercible');
|
|
|
|
// http://www.ecma-international.org/ecma-262/5.1/#sec-9.9
|
|
|
|
module.exports = function ToObject(value) {
|
|
CheckObjectCoercible(value);
|
|
return $Object(value);
|
|
};
|