mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-09-23 18:15:46 -06: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);
|
|
};
|