Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/es-abstract/2017/thisBooleanValue.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

16 lines
362 B
JavaScript

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