@t7/utils
Version:
Utility methods for T7 components.
15 lines (11 loc) • 299 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
// Helper for checking existence.
var exists = function exists(x) {
return x !== null && typeof x !== 'undefined';
}; // Expose function.
var _default = exists;
exports.default = _default;
;