UNPKG

commanding

Version:

A simple yet practical command-Line application framework, written in TypeScript.

12 lines (11 loc) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class IntegerSanitizer { constructor(options) { this.options = options; } sanitize(value) { return parseInt(value); } } exports.IntegerSanitizer = IntegerSanitizer;