UNPKG

@hedhog/utils

Version:

<p align="center"> <img src="https://avatars.githubusercontent.com/u/177489127?s=200&v=4" alt="Hedhog Avatar" /> </p>

27 lines 1.29 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.OptionalParseIntPipe = void 0; const common_1 = require("@nestjs/common"); let OptionalParseIntPipe = class OptionalParseIntPipe { transform(value) { if (!value) { return value; } const val = parseInt(value, 10); if (isNaN(val)) { throw new common_1.BadRequestException(`${value} is not a valid number`); } return val; } }; exports.OptionalParseIntPipe = OptionalParseIntPipe; exports.OptionalParseIntPipe = OptionalParseIntPipe = __decorate([ (0, common_1.Injectable)() ], OptionalParseIntPipe); //# sourceMappingURL=optional-parse-int.pipe.js.map