locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
16 lines (15 loc) • 627 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.truth = truth;
const _operator_ts_1 = require("../_helpers/_operator.js");
function truth(a) {
// discuss at: https://locutus.io/python/operator/truth/
// parity verified: Python 3.12
// original by: Kevin van Zonneveld (https://kvz.io)
// note 1: Uses Python truthiness rules for plain values, including empty containers and NaN.
// example 1: truth({})
// returns 1: false
// example 2: truth(NaN)
// returns 2: true
return (0, _operator_ts_1.pythonTruth)(a);
}