UNPKG

topkat-utils

Version:

A comprehensive collection of TypeScript/JavaScript utility functions for common programming tasks. Includes validation, object manipulation, date handling, string formatting, and more. Zero dependencies, fully typed, and optimized for performance.

8 lines 259 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isset = void 0; function isset(...elms) { return elms.every(elm => typeof elm !== 'undefined' && elm !== null); } exports.isset = isset; //# sourceMappingURL=isset.js.map