@fugitivesclub/nft-cli
Version:
This CLI allow you to mint your NFT's
12 lines (11 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.notEmpty = void 0;
const notEmpty = (value) => {
if (value === null || value === undefined)
return false;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const testDummy = value;
return true;
};
exports.notEmpty = notEmpty;