mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
10 lines
327 B
JavaScript
10 lines
327 B
JavaScript
|
'use strict';
|
||
|
var anObject = require('../internals/an-object');
|
||
|
var toPrimitive = require('../internals/to-primitive');
|
||
|
|
||
|
module.exports = function (hint) {
|
||
|
if (hint !== 'string' && hint !== 'number' && hint !== 'default') {
|
||
|
throw TypeError('Incorrect hint');
|
||
|
} return toPrimitive(anObject(this), hint !== 'number');
|
||
|
};
|