astro-ghostcms/.pnpm-store/v3/files/04/35d74fa47804e9e6b8e2da6983a...

13 lines
282 B
Plaintext

'use strict';
var toPrimitive = require('es-to-primitive/es2015');
// https://262.ecma-international.org/6.0/#sec-toprimitive
module.exports = function ToPrimitive(input) {
if (arguments.length > 1) {
return toPrimitive(input, arguments[1]);
}
return toPrimitive(input);
};