UNPKG

@eddaic/nestjs-decorators

Version:

Additional decorators intended for use with NestJS framework.

13 lines (12 loc) 238 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tryBigInt = tryBigInt; function tryBigInt(value) { try { BigInt(value); return true; } catch { return false; } }