7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.truthy = truthy;
|
|
function truthy(value) {
|
|
return Boolean(value);
|
|
}
|