indicative
Version:
Concise data validation library for Node.js and browsers
25 lines (24 loc) • 752 B
JavaScript
;
/**
* @module indicative
*/
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
/*
* indicative
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
const validator = __importStar(require("./validator"));
exports.validator = validator;
const sanitizer = __importStar(require("./sanitizer"));
exports.sanitizer = sanitizer;