astro-ghostcms/.pnpm-store/v3/files/2a/d61d304b83f2bd73f12980869da...

14 lines
332 B
Plaintext

'use strict';
var $BooleanValueOf = require('call-bind/callBound')('Boolean.prototype.valueOf');
// https://262.ecma-international.org/6.0/#sec-properties-of-the-boolean-prototype-object
module.exports = function thisBooleanValue(value) {
if (typeof value === 'boolean') {
return value;
}
return $BooleanValueOf(value);
};